]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/lib.rs
Auto merge of #66072 - Mark-Simulacrum:next-node-id, r=nikomatsakis
[rust.git] / src / librustc_resolve / lib.rs
1 //! This crate is responsible for the part of name resolution that doesn't require type checker.
2 //!
3 //! Module structure of the crate is built here.
4 //! Paths in macros, imports, expressions, types, patterns are resolved here.
5 //! Label names are resolved here as well.
6 //!
7 //! Type-relative name resolution (methods, fields, associated items) happens in `librustc_typeck`.
8 //! Lifetime names are resolved in `librustc/middle/resolve_lifetime.rs`.
9
10 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
11
12 #![feature(crate_visibility_modifier)]
13 #![feature(label_break_value)]
14 #![feature(nll)]
15
16 #![recursion_limit="256"]
17
18 pub use rustc::hir::def::{Namespace, PerNS};
19
20 use Determinacy::*;
21
22 use rustc::hir::map::Definitions;
23 use rustc::hir::{self, PrimTy, Bool, Char, Float, Int, Uint, Str};
24 use rustc::middle::cstore::{CrateStore, MetadataLoaderDyn};
25 use rustc::session::Session;
26 use rustc::lint;
27 use rustc::hir::def::{self, DefKind, PartialRes, CtorKind, CtorOf, NonMacroAttrKind, ExportMap};
28 use rustc::hir::def::Namespace::*;
29 use rustc::hir::def_id::{CRATE_DEF_INDEX, LOCAL_CRATE, CrateNum, DefId};
30 use rustc::hir::{TraitMap, GlobMap};
31 use rustc::ty::{self, DefIdTree, ResolverOutputs};
32 use rustc::util::nodemap::{NodeMap, NodeSet, FxHashMap, FxHashSet, DefIdMap};
33 use rustc::span_bug;
34
35 use rustc_metadata::creader::CrateLoader;
36 use rustc_metadata::cstore::CStore;
37
38 use syntax::{struct_span_err, unwrap_or};
39 use syntax::ast::{self, Name, NodeId, Ident, FloatTy, IntTy, UintTy};
40 use syntax::ast::{CRATE_NODE_ID, Crate};
41 use syntax::ast::{ItemKind, Path};
42 use syntax::attr;
43 use syntax::print::pprust;
44 use syntax::symbol::{kw, sym};
45 use syntax::source_map::Spanned;
46 use syntax::visit::{self, Visitor};
47 use syntax_expand::base::SyntaxExtension;
48 use syntax_pos::hygiene::{MacroKind, ExpnId, Transparency, SyntaxContext};
49 use syntax_pos::{Span, DUMMY_SP};
50 use errors::{Applicability, DiagnosticBuilder};
51
52 use log::debug;
53
54 use std::cell::{Cell, RefCell};
55 use std::{cmp, fmt, iter, ptr};
56 use std::collections::BTreeSet;
57 use rustc_data_structures::ptr_key::PtrKey;
58 use rustc_data_structures::sync::Lrc;
59 use rustc_data_structures::fx::FxIndexMap;
60
61 use diagnostics::{Suggestion, ImportSuggestion};
62 use diagnostics::{find_span_of_binding_until_next_binding, extend_span_to_previous_binding};
63 use late::{HasGenericParams, PathSource, Rib, RibKind::*};
64 use resolve_imports::{ImportDirective, ImportDirectiveSubclass, NameResolution, ImportResolver};
65 use macros::{LegacyBinding, LegacyScope};
66
67 type Res = def::Res<NodeId>;
68
69 pub mod error_codes;
70 mod diagnostics;
71 mod late;
72 mod macros;
73 mod check_unused;
74 mod build_reduced_graph;
75 mod resolve_imports;
76
77 const KNOWN_TOOLS: &[Name] = &[sym::clippy, sym::rustfmt];
78
79 enum Weak {
80     Yes,
81     No,
82 }
83
84 #[derive(Copy, Clone, PartialEq, Debug)]
85 pub enum Determinacy {
86     Determined,
87     Undetermined,
88 }
89
90 impl Determinacy {
91     fn determined(determined: bool) -> Determinacy {
92         if determined { Determinacy::Determined } else { Determinacy::Undetermined }
93     }
94 }
95
96 /// A specific scope in which a name can be looked up.
97 /// This enum is currently used only for early resolution (imports and macros),
98 /// but not for late resolution yet.
99 #[derive(Clone, Copy)]
100 enum Scope<'a> {
101     DeriveHelpers,
102     MacroRules(LegacyScope<'a>),
103     CrateRoot,
104     Module(Module<'a>),
105     MacroUsePrelude,
106     BuiltinAttrs,
107     LegacyPluginHelpers,
108     ExternPrelude,
109     ToolPrelude,
110     StdLibPrelude,
111     BuiltinTypes,
112 }
113
114 /// Names from different contexts may want to visit different subsets of all specific scopes
115 /// with different restrictions when looking up the resolution.
116 /// This enum is currently used only for early resolution (imports and macros),
117 /// but not for late resolution yet.
118 enum ScopeSet {
119     /// All scopes with the given namespace.
120     All(Namespace, /*is_import*/ bool),
121     /// Crate root, then extern prelude (used for mixed 2015-2018 mode in macros).
122     AbsolutePath(Namespace),
123     /// All scopes with macro namespace and the given macro kind restriction.
124     Macro(MacroKind),
125 }
126
127 /// Everything you need to know about a name's location to resolve it.
128 /// Serves as a starting point for the scope visitor.
129 /// This struct is currently used only for early resolution (imports and macros),
130 /// but not for late resolution yet.
131 #[derive(Clone, Copy, Debug)]
132 pub struct ParentScope<'a> {
133     module: Module<'a>,
134     expansion: ExpnId,
135     legacy: LegacyScope<'a>,
136     derives: &'a [ast::Path],
137 }
138
139 impl<'a> ParentScope<'a> {
140     /// Creates a parent scope with the passed argument used as the module scope component,
141     /// and other scope components set to default empty values.
142     pub fn module(module: Module<'a>) -> ParentScope<'a> {
143         ParentScope {
144             module,
145             expansion: ExpnId::root(),
146             legacy: LegacyScope::Empty,
147             derives: &[],
148         }
149     }
150 }
151
152 #[derive(Eq)]
153 struct BindingError {
154     name: Name,
155     origin: BTreeSet<Span>,
156     target: BTreeSet<Span>,
157     could_be_path: bool
158 }
159
160 impl PartialOrd for BindingError {
161     fn partial_cmp(&self, other: &BindingError) -> Option<cmp::Ordering> {
162         Some(self.cmp(other))
163     }
164 }
165
166 impl PartialEq for BindingError {
167     fn eq(&self, other: &BindingError) -> bool {
168         self.name == other.name
169     }
170 }
171
172 impl Ord for BindingError {
173     fn cmp(&self, other: &BindingError) -> cmp::Ordering {
174         self.name.cmp(&other.name)
175     }
176 }
177
178 enum ResolutionError<'a> {
179     /// Error E0401: can't use type or const parameters from outer function.
180     GenericParamsFromOuterFunction(Res, HasGenericParams),
181     /// Error E0403: the name is already used for a type or const parameter in this generic
182     /// parameter list.
183     NameAlreadyUsedInParameterList(Name, Span),
184     /// Error E0407: method is not a member of trait.
185     MethodNotMemberOfTrait(Name, &'a str),
186     /// Error E0437: type is not a member of trait.
187     TypeNotMemberOfTrait(Name, &'a str),
188     /// Error E0438: const is not a member of trait.
189     ConstNotMemberOfTrait(Name, &'a str),
190     /// Error E0408: variable `{}` is not bound in all patterns.
191     VariableNotBoundInPattern(&'a BindingError),
192     /// Error E0409: variable `{}` is bound in inconsistent ways within the same match arm.
193     VariableBoundWithDifferentMode(Name, Span),
194     /// Error E0415: identifier is bound more than once in this parameter list.
195     IdentifierBoundMoreThanOnceInParameterList(&'a str),
196     /// Error E0416: identifier is bound more than once in the same pattern.
197     IdentifierBoundMoreThanOnceInSamePattern(&'a str),
198     /// Error E0426: use of undeclared label.
199     UndeclaredLabel(&'a str, Option<Name>),
200     /// Error E0429: `self` imports are only allowed within a `{ }` list.
201     SelfImportsOnlyAllowedWithin,
202     /// Error E0430: `self` import can only appear once in the list.
203     SelfImportCanOnlyAppearOnceInTheList,
204     /// Error E0431: `self` import can only appear in an import list with a non-empty prefix.
205     SelfImportOnlyInImportListWithNonEmptyPrefix,
206     /// Error E0433: failed to resolve.
207     FailedToResolve { label: String, suggestion: Option<Suggestion> },
208     /// Error E0434: can't capture dynamic environment in a fn item.
209     CannotCaptureDynamicEnvironmentInFnItem,
210     /// Error E0435: attempt to use a non-constant value in a constant.
211     AttemptToUseNonConstantValueInConstant,
212     /// Error E0530: `X` bindings cannot shadow `Y`s.
213     BindingShadowsSomethingUnacceptable(&'a str, Name, &'a NameBinding<'a>),
214     /// Error E0128: type parameters with a default cannot use forward-declared identifiers.
215     ForwardDeclaredTyParam, // FIXME(const_generics:defaults)
216     /// Error E0735: type parameters with a default cannot use `Self`
217     SelfInTyParamDefault,
218 }
219
220 // A minimal representation of a path segment. We use this in resolve because
221 // we synthesize 'path segments' which don't have the rest of an AST or HIR
222 // `PathSegment`.
223 #[derive(Clone, Copy, Debug)]
224 pub struct Segment {
225     ident: Ident,
226     id: Option<NodeId>,
227 }
228
229 impl Segment {
230     fn from_path(path: &Path) -> Vec<Segment> {
231         path.segments.iter().map(|s| s.into()).collect()
232     }
233
234     fn from_ident(ident: Ident) -> Segment {
235         Segment {
236             ident,
237             id: None,
238         }
239     }
240
241     fn names_to_string(segments: &[Segment]) -> String {
242         names_to_string(&segments.iter()
243                             .map(|seg| seg.ident.name)
244                             .collect::<Vec<_>>())
245     }
246 }
247
248 impl<'a> From<&'a ast::PathSegment> for Segment {
249     fn from(seg: &'a ast::PathSegment) -> Segment {
250         Segment {
251             ident: seg.ident,
252             id: Some(seg.id),
253         }
254     }
255 }
256
257 struct UsePlacementFinder {
258     target_module: NodeId,
259     span: Option<Span>,
260     found_use: bool,
261 }
262
263 impl UsePlacementFinder {
264     fn check(krate: &Crate, target_module: NodeId) -> (Option<Span>, bool) {
265         let mut finder = UsePlacementFinder {
266             target_module,
267             span: None,
268             found_use: false,
269         };
270         visit::walk_crate(&mut finder, krate);
271         (finder.span, finder.found_use)
272     }
273 }
274
275 impl<'tcx> Visitor<'tcx> for UsePlacementFinder {
276     fn visit_mod(
277         &mut self,
278         module: &'tcx ast::Mod,
279         _: Span,
280         _: &[ast::Attribute],
281         node_id: NodeId,
282     ) {
283         if self.span.is_some() {
284             return;
285         }
286         if node_id != self.target_module {
287             visit::walk_mod(self, module);
288             return;
289         }
290         // find a use statement
291         for item in &module.items {
292             match item.kind {
293                 ItemKind::Use(..) => {
294                     // don't suggest placing a use before the prelude
295                     // import or other generated ones
296                     if !item.span.from_expansion() {
297                         self.span = Some(item.span.shrink_to_lo());
298                         self.found_use = true;
299                         return;
300                     }
301                 },
302                 // don't place use before extern crate
303                 ItemKind::ExternCrate(_) => {}
304                 // but place them before the first other item
305                 _ => if self.span.map_or(true, |span| item.span < span ) {
306                     if !item.span.from_expansion() {
307                         // don't insert between attributes and an item
308                         if item.attrs.is_empty() {
309                             self.span = Some(item.span.shrink_to_lo());
310                         } else {
311                             // find the first attribute on the item
312                             for attr in &item.attrs {
313                                 if self.span.map_or(true, |span| attr.span < span) {
314                                     self.span = Some(attr.span.shrink_to_lo());
315                                 }
316                             }
317                         }
318                     }
319                 },
320             }
321         }
322     }
323 }
324
325 /// An intermediate resolution result.
326 ///
327 /// This refers to the thing referred by a name. The difference between `Res` and `Item` is that
328 /// items are visible in their whole block, while `Res`es only from the place they are defined
329 /// forward.
330 #[derive(Debug)]
331 enum LexicalScopeBinding<'a> {
332     Item(&'a NameBinding<'a>),
333     Res(Res),
334 }
335
336 impl<'a> LexicalScopeBinding<'a> {
337     fn item(self) -> Option<&'a NameBinding<'a>> {
338         match self {
339             LexicalScopeBinding::Item(binding) => Some(binding),
340             _ => None,
341         }
342     }
343
344     fn res(self) -> Res {
345         match self {
346             LexicalScopeBinding::Item(binding) => binding.res(),
347             LexicalScopeBinding::Res(res) => res,
348         }
349     }
350 }
351
352 #[derive(Copy, Clone, Debug)]
353 enum ModuleOrUniformRoot<'a> {
354     /// Regular module.
355     Module(Module<'a>),
356
357     /// Virtual module that denotes resolution in crate root with fallback to extern prelude.
358     CrateRootAndExternPrelude,
359
360     /// Virtual module that denotes resolution in extern prelude.
361     /// Used for paths starting with `::` on 2018 edition.
362     ExternPrelude,
363
364     /// Virtual module that denotes resolution in current scope.
365     /// Used only for resolving single-segment imports. The reason it exists is that import paths
366     /// are always split into two parts, the first of which should be some kind of module.
367     CurrentScope,
368 }
369
370 impl ModuleOrUniformRoot<'_> {
371     fn same_def(lhs: Self, rhs: Self) -> bool {
372         match (lhs, rhs) {
373             (ModuleOrUniformRoot::Module(lhs),
374              ModuleOrUniformRoot::Module(rhs)) => lhs.def_id() == rhs.def_id(),
375             (ModuleOrUniformRoot::CrateRootAndExternPrelude,
376              ModuleOrUniformRoot::CrateRootAndExternPrelude) |
377             (ModuleOrUniformRoot::ExternPrelude, ModuleOrUniformRoot::ExternPrelude) |
378             (ModuleOrUniformRoot::CurrentScope, ModuleOrUniformRoot::CurrentScope) => true,
379             _ => false,
380         }
381     }
382 }
383
384 #[derive(Clone, Debug)]
385 enum PathResult<'a> {
386     Module(ModuleOrUniformRoot<'a>),
387     NonModule(PartialRes),
388     Indeterminate,
389     Failed {
390         span: Span,
391         label: String,
392         suggestion: Option<Suggestion>,
393         is_error_from_last_segment: bool,
394     },
395 }
396
397 enum ModuleKind {
398     /// An anonymous module; e.g., just a block.
399     ///
400     /// ```
401     /// fn main() {
402     ///     fn f() {} // (1)
403     ///     { // This is an anonymous module
404     ///         f(); // This resolves to (2) as we are inside the block.
405     ///         fn f() {} // (2)
406     ///     }
407     ///     f(); // Resolves to (1)
408     /// }
409     /// ```
410     Block(NodeId),
411     /// Any module with a name.
412     ///
413     /// This could be:
414     ///
415     /// * A normal module â€’ either `mod from_file;` or `mod from_block { }`.
416     /// * A trait or an enum (it implicitly contains associated types, methods and variant
417     ///   constructors).
418     Def(DefKind, DefId, Name),
419 }
420
421 impl ModuleKind {
422     /// Get name of the module.
423     pub fn name(&self) -> Option<Name> {
424         match self {
425             ModuleKind::Block(..) => None,
426             ModuleKind::Def(.., name) => Some(*name),
427         }
428     }
429 }
430
431 /// A key that identifies a binding in a given `Module`.
432 ///
433 /// Multiple bindings in the same module can have the same key (in a valid
434 /// program) if all but one of them come from glob imports.
435 #[derive(Copy, Clone, PartialEq, Eq, Hash)]
436 struct BindingKey {
437     /// The identifier for the binding, aways the `modern` version of the
438     /// identifier.
439     ident: Ident,
440     ns: Namespace,
441     /// 0 if ident is not `_`, otherwise a value that's unique to the specific
442     /// `_` in the expanded AST that introduced this binding.
443     disambiguator: u32,
444 }
445
446 type Resolutions<'a> = RefCell<FxIndexMap<BindingKey, &'a RefCell<NameResolution<'a>>>>;
447
448 /// One node in the tree of modules.
449 pub struct ModuleData<'a> {
450     parent: Option<Module<'a>>,
451     kind: ModuleKind,
452
453     // The def id of the closest normal module (`mod`) ancestor (including this module).
454     normal_ancestor_id: DefId,
455
456     // Mapping between names and their (possibly in-progress) resolutions in this module.
457     // Resolutions in modules from other crates are not populated until accessed.
458     lazy_resolutions: Resolutions<'a>,
459     // True if this is a module from other crate that needs to be populated on access.
460     populate_on_access: Cell<bool>,
461
462     // Macro invocations that can expand into items in this module.
463     unexpanded_invocations: RefCell<FxHashSet<ExpnId>>,
464
465     no_implicit_prelude: bool,
466
467     glob_importers: RefCell<Vec<&'a ImportDirective<'a>>>,
468     globs: RefCell<Vec<&'a ImportDirective<'a>>>,
469
470     // Used to memoize the traits in this module for faster searches through all traits in scope.
471     traits: RefCell<Option<Box<[(Ident, &'a NameBinding<'a>)]>>>,
472
473     /// Span of the module itself. Used for error reporting.
474     span: Span,
475
476     expansion: ExpnId,
477 }
478
479 type Module<'a> = &'a ModuleData<'a>;
480
481 impl<'a> ModuleData<'a> {
482     fn new(parent: Option<Module<'a>>,
483            kind: ModuleKind,
484            normal_ancestor_id: DefId,
485            expansion: ExpnId,
486            span: Span) -> Self {
487         ModuleData {
488             parent,
489             kind,
490             normal_ancestor_id,
491             lazy_resolutions: Default::default(),
492             populate_on_access: Cell::new(!normal_ancestor_id.is_local()),
493             unexpanded_invocations: Default::default(),
494             no_implicit_prelude: false,
495             glob_importers: RefCell::new(Vec::new()),
496             globs: RefCell::new(Vec::new()),
497             traits: RefCell::new(None),
498             span,
499             expansion,
500         }
501     }
502
503     fn for_each_child<R, F>(&'a self, resolver: &mut R, mut f: F)
504         where R: AsMut<Resolver<'a>>, F: FnMut(&mut R, Ident, Namespace, &'a NameBinding<'a>)
505     {
506         for (key, name_resolution) in resolver.as_mut().resolutions(self).borrow().iter() {
507             name_resolution.borrow().binding.map(|binding| f(resolver, key.ident, key.ns, binding));
508         }
509     }
510
511     fn res(&self) -> Option<Res> {
512         match self.kind {
513             ModuleKind::Def(kind, def_id, _) => Some(Res::Def(kind, def_id)),
514             _ => None,
515         }
516     }
517
518     fn def_id(&self) -> Option<DefId> {
519         match self.kind {
520             ModuleKind::Def(_, def_id, _) => Some(def_id),
521             _ => None,
522         }
523     }
524
525     // `self` resolves to the first module ancestor that `is_normal`.
526     fn is_normal(&self) -> bool {
527         match self.kind {
528             ModuleKind::Def(DefKind::Mod, _, _) => true,
529             _ => false,
530         }
531     }
532
533     fn is_trait(&self) -> bool {
534         match self.kind {
535             ModuleKind::Def(DefKind::Trait, _, _) => true,
536             _ => false,
537         }
538     }
539
540     fn nearest_item_scope(&'a self) -> Module<'a> {
541         match self.kind {
542             ModuleKind::Def(DefKind::Enum, ..) | ModuleKind::Def(DefKind::Trait, ..) =>
543                 self.parent.expect("enum or trait module without a parent"),
544             _ => self,
545         }
546     }
547
548     fn is_ancestor_of(&self, mut other: &Self) -> bool {
549         while !ptr::eq(self, other) {
550             if let Some(parent) = other.parent {
551                 other = parent;
552             } else {
553                 return false;
554             }
555         }
556         true
557     }
558 }
559
560 impl<'a> fmt::Debug for ModuleData<'a> {
561     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
562         write!(f, "{:?}", self.res())
563     }
564 }
565
566 /// Records a possibly-private value, type, or module definition.
567 #[derive(Clone, Debug)]
568 pub struct NameBinding<'a> {
569     kind: NameBindingKind<'a>,
570     ambiguity: Option<(&'a NameBinding<'a>, AmbiguityKind)>,
571     expansion: ExpnId,
572     span: Span,
573     vis: ty::Visibility,
574 }
575
576 pub trait ToNameBinding<'a> {
577     fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a>;
578 }
579
580 impl<'a> ToNameBinding<'a> for &'a NameBinding<'a> {
581     fn to_name_binding(self, _: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
582         self
583     }
584 }
585
586 #[derive(Clone, Debug)]
587 enum NameBindingKind<'a> {
588     Res(Res, /* is_macro_export */ bool),
589     Module(Module<'a>),
590     Import {
591         binding: &'a NameBinding<'a>,
592         directive: &'a ImportDirective<'a>,
593         used: Cell<bool>,
594     },
595 }
596
597 impl<'a> NameBindingKind<'a> {
598     /// Is this a name binding of a import?
599     fn is_import(&self) -> bool {
600         match *self {
601             NameBindingKind::Import { .. } => true,
602             _ => false,
603         }
604     }
605 }
606
607 struct PrivacyError<'a>(Span, Ident, &'a NameBinding<'a>);
608
609 struct UseError<'a> {
610     err: DiagnosticBuilder<'a>,
611     /// Attach `use` statements for these candidates.
612     candidates: Vec<ImportSuggestion>,
613     /// The `NodeId` of the module to place the use-statements in.
614     node_id: NodeId,
615     /// Whether the diagnostic should state that it's "better".
616     better: bool,
617 }
618
619 #[derive(Clone, Copy, PartialEq, Debug)]
620 enum AmbiguityKind {
621     Import,
622     BuiltinAttr,
623     DeriveHelper,
624     LegacyHelperVsPrelude,
625     LegacyVsModern,
626     GlobVsOuter,
627     GlobVsGlob,
628     GlobVsExpanded,
629     MoreExpandedVsOuter,
630 }
631
632 impl AmbiguityKind {
633     fn descr(self) -> &'static str {
634         match self {
635             AmbiguityKind::Import =>
636                 "name vs any other name during import resolution",
637             AmbiguityKind::BuiltinAttr =>
638                 "built-in attribute vs any other name",
639             AmbiguityKind::DeriveHelper =>
640                 "derive helper attribute vs any other name",
641             AmbiguityKind::LegacyHelperVsPrelude =>
642                 "legacy plugin helper attribute vs name from prelude",
643             AmbiguityKind::LegacyVsModern =>
644                 "`macro_rules` vs non-`macro_rules` from other module",
645             AmbiguityKind::GlobVsOuter =>
646                 "glob import vs any other name from outer scope during import/macro resolution",
647             AmbiguityKind::GlobVsGlob =>
648                 "glob import vs glob import in the same module",
649             AmbiguityKind::GlobVsExpanded =>
650                 "glob import vs macro-expanded name in the same \
651                  module during import/macro resolution",
652             AmbiguityKind::MoreExpandedVsOuter =>
653                 "macro-expanded name vs less macro-expanded name \
654                  from outer scope during import/macro resolution",
655         }
656     }
657 }
658
659 /// Miscellaneous bits of metadata for better ambiguity error reporting.
660 #[derive(Clone, Copy, PartialEq)]
661 enum AmbiguityErrorMisc {
662     SuggestCrate,
663     SuggestSelf,
664     FromPrelude,
665     None,
666 }
667
668 struct AmbiguityError<'a> {
669     kind: AmbiguityKind,
670     ident: Ident,
671     b1: &'a NameBinding<'a>,
672     b2: &'a NameBinding<'a>,
673     misc1: AmbiguityErrorMisc,
674     misc2: AmbiguityErrorMisc,
675 }
676
677 impl<'a> NameBinding<'a> {
678     fn module(&self) -> Option<Module<'a>> {
679         match self.kind {
680             NameBindingKind::Module(module) => Some(module),
681             NameBindingKind::Import { binding, .. } => binding.module(),
682             _ => None,
683         }
684     }
685
686     fn res(&self) -> Res {
687         match self.kind {
688             NameBindingKind::Res(res, _) => res,
689             NameBindingKind::Module(module) => module.res().unwrap(),
690             NameBindingKind::Import { binding, .. } => binding.res(),
691         }
692     }
693
694     fn is_ambiguity(&self) -> bool {
695         self.ambiguity.is_some() || match self.kind {
696             NameBindingKind::Import { binding, .. } => binding.is_ambiguity(),
697             _ => false,
698         }
699     }
700
701     // We sometimes need to treat variants as `pub` for backwards compatibility.
702     fn pseudo_vis(&self) -> ty::Visibility {
703         if self.is_variant() && self.res().def_id().is_local() {
704             ty::Visibility::Public
705         } else {
706             self.vis
707         }
708     }
709
710     fn is_variant(&self) -> bool {
711         match self.kind {
712             NameBindingKind::Res(Res::Def(DefKind::Variant, _), _) |
713             NameBindingKind::Res(Res::Def(DefKind::Ctor(CtorOf::Variant, ..), _), _) => true,
714             _ => false,
715         }
716     }
717
718     fn is_extern_crate(&self) -> bool {
719         match self.kind {
720             NameBindingKind::Import {
721                 directive: &ImportDirective {
722                     subclass: ImportDirectiveSubclass::ExternCrate { .. }, ..
723                 }, ..
724             } => true,
725             NameBindingKind::Module(
726                 &ModuleData { kind: ModuleKind::Def(DefKind::Mod, def_id, _), .. }
727             ) => def_id.index == CRATE_DEF_INDEX,
728             _ => false,
729         }
730     }
731
732     fn is_import(&self) -> bool {
733         match self.kind {
734             NameBindingKind::Import { .. } => true,
735             _ => false,
736         }
737     }
738
739     fn is_glob_import(&self) -> bool {
740         match self.kind {
741             NameBindingKind::Import { directive, .. } => directive.is_glob(),
742             _ => false,
743         }
744     }
745
746     fn is_importable(&self) -> bool {
747         match self.res() {
748             Res::Def(DefKind::AssocConst, _)
749             | Res::Def(DefKind::Method, _)
750             | Res::Def(DefKind::AssocTy, _) => false,
751             _ => true,
752         }
753     }
754
755     fn is_macro_def(&self) -> bool {
756         match self.kind {
757             NameBindingKind::Res(Res::Def(DefKind::Macro(..), _), _) => true,
758             _ => false,
759         }
760     }
761
762     fn macro_kind(&self) -> Option<MacroKind> {
763         self.res().macro_kind()
764     }
765
766     // Suppose that we resolved macro invocation with `invoc_parent_expansion` to binding `binding`
767     // at some expansion round `max(invoc, binding)` when they both emerged from macros.
768     // Then this function returns `true` if `self` may emerge from a macro *after* that
769     // in some later round and screw up our previously found resolution.
770     // See more detailed explanation in
771     // https://github.com/rust-lang/rust/pull/53778#issuecomment-419224049
772     fn may_appear_after(&self, invoc_parent_expansion: ExpnId, binding: &NameBinding<'_>) -> bool {
773         // self > max(invoc, binding) => !(self <= invoc || self <= binding)
774         // Expansions are partially ordered, so "may appear after" is an inversion of
775         // "certainly appears before or simultaneously" and includes unordered cases.
776         let self_parent_expansion = self.expansion;
777         let other_parent_expansion = binding.expansion;
778         let certainly_before_other_or_simultaneously =
779             other_parent_expansion.is_descendant_of(self_parent_expansion);
780         let certainly_before_invoc_or_simultaneously =
781             invoc_parent_expansion.is_descendant_of(self_parent_expansion);
782         !(certainly_before_other_or_simultaneously || certainly_before_invoc_or_simultaneously)
783     }
784 }
785
786 /// Interns the names of the primitive types.
787 ///
788 /// All other types are defined somewhere and possibly imported, but the primitive ones need
789 /// special handling, since they have no place of origin.
790 struct PrimitiveTypeTable {
791     primitive_types: FxHashMap<Name, PrimTy>,
792 }
793
794 impl PrimitiveTypeTable {
795     fn new() -> PrimitiveTypeTable {
796         let mut table = FxHashMap::default();
797
798         table.insert(sym::bool, Bool);
799         table.insert(sym::char, Char);
800         table.insert(sym::f32, Float(FloatTy::F32));
801         table.insert(sym::f64, Float(FloatTy::F64));
802         table.insert(sym::isize, Int(IntTy::Isize));
803         table.insert(sym::i8, Int(IntTy::I8));
804         table.insert(sym::i16, Int(IntTy::I16));
805         table.insert(sym::i32, Int(IntTy::I32));
806         table.insert(sym::i64, Int(IntTy::I64));
807         table.insert(sym::i128, Int(IntTy::I128));
808         table.insert(sym::str, Str);
809         table.insert(sym::usize, Uint(UintTy::Usize));
810         table.insert(sym::u8, Uint(UintTy::U8));
811         table.insert(sym::u16, Uint(UintTy::U16));
812         table.insert(sym::u32, Uint(UintTy::U32));
813         table.insert(sym::u64, Uint(UintTy::U64));
814         table.insert(sym::u128, Uint(UintTy::U128));
815         Self { primitive_types: table }
816     }
817 }
818
819 #[derive(Debug, Default, Clone)]
820 pub struct ExternPreludeEntry<'a> {
821     extern_crate_item: Option<&'a NameBinding<'a>>,
822     pub introduced_by_item: bool,
823 }
824
825 /// The main resolver class.
826 ///
827 /// This is the visitor that walks the whole crate.
828 pub struct Resolver<'a> {
829     session: &'a Session,
830
831     definitions: Definitions,
832
833     graph_root: Module<'a>,
834
835     prelude: Option<Module<'a>>,
836     extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'a>>,
837
838     /// N.B., this is used only for better diagnostics, not name resolution itself.
839     has_self: FxHashSet<DefId>,
840
841     /// Names of fields of an item `DefId` accessible with dot syntax.
842     /// Used for hints during error reporting.
843     field_names: FxHashMap<DefId, Vec<Spanned<Name>>>,
844
845     /// All imports known to succeed or fail.
846     determined_imports: Vec<&'a ImportDirective<'a>>,
847
848     /// All non-determined imports.
849     indeterminate_imports: Vec<&'a ImportDirective<'a>>,
850
851     /// FIXME: Refactor things so that these fields are passed through arguments and not resolver.
852     /// We are resolving a last import segment during import validation.
853     last_import_segment: bool,
854     /// This binding should be ignored during in-module resolution, so that we don't get
855     /// "self-confirming" import resolutions during import validation.
856     blacklisted_binding: Option<&'a NameBinding<'a>>,
857
858     /// The idents for the primitive types.
859     primitive_type_table: PrimitiveTypeTable,
860
861     /// Resolutions for nodes that have a single resolution.
862     partial_res_map: NodeMap<PartialRes>,
863     /// Resolutions for import nodes, which have multiple resolutions in different namespaces.
864     import_res_map: NodeMap<PerNS<Option<Res>>>,
865     /// Resolutions for labels (node IDs of their corresponding blocks or loops).
866     label_res_map: NodeMap<NodeId>,
867
868     /// `CrateNum` resolutions of `extern crate` items.
869     extern_crate_map: NodeMap<CrateNum>,
870     export_map: ExportMap<NodeId>,
871     trait_map: TraitMap,
872
873     /// A map from nodes to anonymous modules.
874     /// Anonymous modules are pseudo-modules that are implicitly created around items
875     /// contained within blocks.
876     ///
877     /// For example, if we have this:
878     ///
879     ///  fn f() {
880     ///      fn g() {
881     ///          ...
882     ///      }
883     ///  }
884     ///
885     /// There will be an anonymous module created around `g` with the ID of the
886     /// entry block for `f`.
887     block_map: NodeMap<Module<'a>>,
888     /// A fake module that contains no definition and no prelude. Used so that
889     /// some AST passes can generate identifiers that only resolve to local or
890     /// language items.
891     empty_module: Module<'a>,
892     module_map: FxHashMap<DefId, Module<'a>>,
893     extern_module_map: FxHashMap<DefId, Module<'a>>,
894     binding_parent_modules: FxHashMap<PtrKey<'a, NameBinding<'a>>, Module<'a>>,
895     underscore_disambiguator: u32,
896
897     /// Maps glob imports to the names of items actually imported.
898     glob_map: GlobMap,
899
900     used_imports: FxHashSet<(NodeId, Namespace)>,
901     maybe_unused_trait_imports: NodeSet,
902     maybe_unused_extern_crates: Vec<(NodeId, Span)>,
903
904     /// Privacy errors are delayed until the end in order to deduplicate them.
905     privacy_errors: Vec<PrivacyError<'a>>,
906     /// Ambiguity errors are delayed for deduplication.
907     ambiguity_errors: Vec<AmbiguityError<'a>>,
908     /// `use` injections are delayed for better placement and deduplication.
909     use_injections: Vec<UseError<'a>>,
910     /// Crate-local macro expanded `macro_export` referred to by a module-relative path.
911     macro_expanded_macro_export_errors: BTreeSet<(Span, Span)>,
912
913     arenas: &'a ResolverArenas<'a>,
914     dummy_binding: &'a NameBinding<'a>,
915
916     crate_loader: CrateLoader<'a>,
917     macro_names: FxHashSet<Ident>,
918     builtin_macros: FxHashMap<Name, SyntaxExtension>,
919     macro_use_prelude: FxHashMap<Name, &'a NameBinding<'a>>,
920     all_macros: FxHashMap<Name, Res>,
921     macro_map: FxHashMap<DefId, Lrc<SyntaxExtension>>,
922     dummy_ext_bang: Lrc<SyntaxExtension>,
923     dummy_ext_derive: Lrc<SyntaxExtension>,
924     non_macro_attrs: [Lrc<SyntaxExtension>; 2],
925     macro_defs: FxHashMap<ExpnId, DefId>,
926     local_macro_def_scopes: FxHashMap<NodeId, Module<'a>>,
927     ast_transform_scopes: FxHashMap<ExpnId, Module<'a>>,
928     unused_macros: NodeMap<Span>,
929     proc_macro_stubs: NodeSet,
930     /// Traces collected during macro resolution and validated when it's complete.
931     single_segment_macro_resolutions: Vec<(Ident, MacroKind, ParentScope<'a>,
932                                            Option<&'a NameBinding<'a>>)>,
933     multi_segment_macro_resolutions: Vec<(Vec<Segment>, Span, MacroKind, ParentScope<'a>,
934                                           Option<Res>)>,
935     builtin_attrs: Vec<(Ident, ParentScope<'a>)>,
936     /// `derive(Copy)` marks items they are applied to so they are treated specially later.
937     /// Derive macros cannot modify the item themselves and have to store the markers in the global
938     /// context, so they attach the markers to derive container IDs using this resolver table.
939     containers_deriving_copy: FxHashSet<ExpnId>,
940     /// Parent scopes in which the macros were invoked.
941     /// FIXME: `derives` are missing in these parent scopes and need to be taken from elsewhere.
942     invocation_parent_scopes: FxHashMap<ExpnId, ParentScope<'a>>,
943     /// Legacy scopes *produced* by expanding the macro invocations,
944     /// include all the `macro_rules` items and other invocations generated by them.
945     output_legacy_scopes: FxHashMap<ExpnId, LegacyScope<'a>>,
946
947     /// Avoid duplicated errors for "name already defined".
948     name_already_seen: FxHashMap<Name, Span>,
949
950     potentially_unused_imports: Vec<&'a ImportDirective<'a>>,
951
952     /// Table for mapping struct IDs into struct constructor IDs,
953     /// it's not used during normal resolution, only for better error reporting.
954     struct_constructors: DefIdMap<(Res, ty::Visibility)>,
955
956     /// Features enabled for this crate.
957     active_features: FxHashSet<Name>,
958
959     /// Stores enum visibilities to properly build a reduced graph
960     /// when visiting the correspondent variants.
961     variant_vis: DefIdMap<ty::Visibility>,
962
963     lint_buffer: lint::LintBuffer,
964
965     next_node_id: NodeId,
966 }
967
968 /// Nothing really interesting here; it just provides memory for the rest of the crate.
969 #[derive(Default)]
970 pub struct ResolverArenas<'a> {
971     modules: arena::TypedArena<ModuleData<'a>>,
972     local_modules: RefCell<Vec<Module<'a>>>,
973     name_bindings: arena::TypedArena<NameBinding<'a>>,
974     import_directives: arena::TypedArena<ImportDirective<'a>>,
975     name_resolutions: arena::TypedArena<RefCell<NameResolution<'a>>>,
976     legacy_bindings: arena::TypedArena<LegacyBinding<'a>>,
977     ast_paths: arena::TypedArena<ast::Path>,
978 }
979
980 impl<'a> ResolverArenas<'a> {
981     fn alloc_module(&'a self, module: ModuleData<'a>) -> Module<'a> {
982         let module = self.modules.alloc(module);
983         if module.def_id().map(|def_id| def_id.is_local()).unwrap_or(true) {
984             self.local_modules.borrow_mut().push(module);
985         }
986         module
987     }
988     fn local_modules(&'a self) -> std::cell::Ref<'a, Vec<Module<'a>>> {
989         self.local_modules.borrow()
990     }
991     fn alloc_name_binding(&'a self, name_binding: NameBinding<'a>) -> &'a NameBinding<'a> {
992         self.name_bindings.alloc(name_binding)
993     }
994     fn alloc_import_directive(&'a self, import_directive: ImportDirective<'a>)
995                               -> &'a ImportDirective<'_> {
996         self.import_directives.alloc(import_directive)
997     }
998     fn alloc_name_resolution(&'a self) -> &'a RefCell<NameResolution<'a>> {
999         self.name_resolutions.alloc(Default::default())
1000     }
1001     fn alloc_legacy_binding(&'a self, binding: LegacyBinding<'a>) -> &'a LegacyBinding<'a> {
1002         self.legacy_bindings.alloc(binding)
1003     }
1004     fn alloc_ast_paths(&'a self, paths: &[ast::Path]) -> &'a [ast::Path] {
1005         self.ast_paths.alloc_from_iter(paths.iter().cloned())
1006     }
1007 }
1008
1009 impl<'a> AsMut<Resolver<'a>> for Resolver<'a> {
1010     fn as_mut(&mut self) -> &mut Resolver<'a> { self }
1011 }
1012
1013 impl<'a, 'b> DefIdTree for &'a Resolver<'b> {
1014     fn parent(self, id: DefId) -> Option<DefId> {
1015         match id.krate {
1016             LOCAL_CRATE => self.definitions.def_key(id.index).parent,
1017             _ => self.cstore().def_key(id).parent,
1018         }.map(|index| DefId { index, ..id })
1019     }
1020 }
1021
1022 /// This interface is used through the AST→HIR step, to embed full paths into the HIR. After that
1023 /// the resolver is no longer needed as all the relevant information is inline.
1024 impl<'a> hir::lowering::Resolver for Resolver<'a> {
1025     fn cstore(&self) -> &dyn CrateStore {
1026         self.cstore()
1027     }
1028
1029     fn resolve_str_path(
1030         &mut self,
1031         span: Span,
1032         crate_root: Option<Name>,
1033         components: &[Name],
1034         ns: Namespace,
1035     ) -> (ast::Path, Res) {
1036         let root = if crate_root.is_some() {
1037             kw::PathRoot
1038         } else {
1039             kw::Crate
1040         };
1041         let segments = iter::once(Ident::with_dummy_span(root))
1042             .chain(
1043                 crate_root.into_iter()
1044                     .chain(components.iter().cloned())
1045                     .map(Ident::with_dummy_span)
1046             ).map(|i| self.new_ast_path_segment(i)).collect::<Vec<_>>();
1047
1048         let path = ast::Path {
1049             span,
1050             segments,
1051         };
1052
1053         let parent_scope = &ParentScope::module(self.graph_root);
1054         let res = match self.resolve_ast_path(&path, ns, parent_scope) {
1055             Ok(res) => res,
1056             Err((span, error)) => {
1057                 self.report_error(span, error);
1058                 Res::Err
1059             }
1060         };
1061         (path, res)
1062     }
1063
1064     fn get_partial_res(&mut self, id: NodeId) -> Option<PartialRes> {
1065         self.partial_res_map.get(&id).cloned()
1066     }
1067
1068     fn get_import_res(&mut self, id: NodeId) -> PerNS<Option<Res>> {
1069         self.import_res_map.get(&id).cloned().unwrap_or_default()
1070     }
1071
1072     fn get_label_res(&mut self, id: NodeId) -> Option<NodeId> {
1073         self.label_res_map.get(&id).cloned()
1074     }
1075
1076     fn definitions(&mut self) -> &mut Definitions {
1077         &mut self.definitions
1078     }
1079
1080     fn lint_buffer(&mut self) -> &mut lint::LintBuffer {
1081         &mut self.lint_buffer
1082     }
1083
1084     fn next_node_id(&mut self) -> NodeId {
1085         self.next_node_id()
1086     }
1087 }
1088
1089 impl<'a> Resolver<'a> {
1090     pub fn new(session: &'a Session,
1091                krate: &Crate,
1092                crate_name: &str,
1093                metadata_loader: &'a MetadataLoaderDyn,
1094                arenas: &'a ResolverArenas<'a>)
1095                -> Resolver<'a> {
1096         let root_def_id = DefId::local(CRATE_DEF_INDEX);
1097         let root_module_kind = ModuleKind::Def(
1098             DefKind::Mod,
1099             root_def_id,
1100             kw::Invalid,
1101         );
1102         let graph_root = arenas.alloc_module(ModuleData {
1103             no_implicit_prelude: attr::contains_name(&krate.attrs, sym::no_implicit_prelude),
1104             ..ModuleData::new(None, root_module_kind, root_def_id, ExpnId::root(), krate.span)
1105         });
1106         let empty_module_kind = ModuleKind::Def(
1107             DefKind::Mod,
1108             root_def_id,
1109             kw::Invalid,
1110         );
1111         let empty_module = arenas.alloc_module(ModuleData {
1112             no_implicit_prelude: true,
1113             ..ModuleData::new(
1114                 Some(graph_root),
1115                 empty_module_kind,
1116                 root_def_id,
1117                 ExpnId::root(),
1118                 DUMMY_SP,
1119             )
1120         });
1121         let mut module_map = FxHashMap::default();
1122         module_map.insert(DefId::local(CRATE_DEF_INDEX), graph_root);
1123
1124         let mut definitions = Definitions::default();
1125         definitions.create_root_def(crate_name, session.local_crate_disambiguator());
1126
1127         let mut extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'_>> =
1128             session.opts.externs.iter().map(|kv| (Ident::from_str(kv.0), Default::default()))
1129                                        .collect();
1130
1131         if !attr::contains_name(&krate.attrs, sym::no_core) {
1132             extern_prelude.insert(Ident::with_dummy_span(sym::core), Default::default());
1133             if !attr::contains_name(&krate.attrs, sym::no_std) {
1134                 extern_prelude.insert(Ident::with_dummy_span(sym::std), Default::default());
1135                 if session.rust_2018() {
1136                     extern_prelude.insert(Ident::with_dummy_span(sym::meta), Default::default());
1137                 }
1138             }
1139         }
1140
1141         let mut invocation_parent_scopes = FxHashMap::default();
1142         invocation_parent_scopes.insert(ExpnId::root(), ParentScope::module(graph_root));
1143
1144         let mut macro_defs = FxHashMap::default();
1145         macro_defs.insert(ExpnId::root(), root_def_id);
1146
1147         let features = session.features_untracked();
1148         let non_macro_attr =
1149             |mark_used| Lrc::new(SyntaxExtension::non_macro_attr(mark_used, session.edition()));
1150
1151         Resolver {
1152             session,
1153
1154             definitions,
1155
1156             // The outermost module has def ID 0; this is not reflected in the
1157             // AST.
1158             graph_root,
1159             prelude: None,
1160             extern_prelude,
1161
1162             has_self: FxHashSet::default(),
1163             field_names: FxHashMap::default(),
1164
1165             determined_imports: Vec::new(),
1166             indeterminate_imports: Vec::new(),
1167
1168             last_import_segment: false,
1169             blacklisted_binding: None,
1170
1171             primitive_type_table: PrimitiveTypeTable::new(),
1172
1173             partial_res_map: Default::default(),
1174             import_res_map: Default::default(),
1175             label_res_map: Default::default(),
1176             extern_crate_map: Default::default(),
1177             export_map: FxHashMap::default(),
1178             trait_map: Default::default(),
1179             underscore_disambiguator: 0,
1180             empty_module,
1181             module_map,
1182             block_map: Default::default(),
1183             extern_module_map: FxHashMap::default(),
1184             binding_parent_modules: FxHashMap::default(),
1185             ast_transform_scopes: FxHashMap::default(),
1186
1187             glob_map: Default::default(),
1188
1189             used_imports: FxHashSet::default(),
1190             maybe_unused_trait_imports: Default::default(),
1191             maybe_unused_extern_crates: Vec::new(),
1192
1193             privacy_errors: Vec::new(),
1194             ambiguity_errors: Vec::new(),
1195             use_injections: Vec::new(),
1196             macro_expanded_macro_export_errors: BTreeSet::new(),
1197
1198             arenas,
1199             dummy_binding: arenas.alloc_name_binding(NameBinding {
1200                 kind: NameBindingKind::Res(Res::Err, false),
1201                 ambiguity: None,
1202                 expansion: ExpnId::root(),
1203                 span: DUMMY_SP,
1204                 vis: ty::Visibility::Public,
1205             }),
1206
1207             crate_loader: CrateLoader::new(session, metadata_loader, crate_name),
1208             macro_names: FxHashSet::default(),
1209             builtin_macros: Default::default(),
1210             macro_use_prelude: FxHashMap::default(),
1211             all_macros: FxHashMap::default(),
1212             macro_map: FxHashMap::default(),
1213             dummy_ext_bang: Lrc::new(SyntaxExtension::dummy_bang(session.edition())),
1214             dummy_ext_derive: Lrc::new(SyntaxExtension::dummy_derive(session.edition())),
1215             non_macro_attrs: [non_macro_attr(false), non_macro_attr(true)],
1216             invocation_parent_scopes,
1217             output_legacy_scopes: Default::default(),
1218             macro_defs,
1219             local_macro_def_scopes: FxHashMap::default(),
1220             name_already_seen: FxHashMap::default(),
1221             potentially_unused_imports: Vec::new(),
1222             struct_constructors: Default::default(),
1223             unused_macros: Default::default(),
1224             proc_macro_stubs: Default::default(),
1225             single_segment_macro_resolutions: Default::default(),
1226             multi_segment_macro_resolutions: Default::default(),
1227             builtin_attrs: Default::default(),
1228             containers_deriving_copy: Default::default(),
1229             active_features:
1230                 features.declared_lib_features.iter().map(|(feat, ..)| *feat)
1231                     .chain(features.declared_lang_features.iter().map(|(feat, ..)| *feat))
1232                     .collect(),
1233             variant_vis: Default::default(),
1234             lint_buffer: lint::LintBuffer::default(),
1235             next_node_id: NodeId::from_u32(1),
1236         }
1237     }
1238
1239     pub fn next_node_id(&mut self) -> NodeId {
1240         let next = self.next_node_id.as_usize()
1241             .checked_add(1)
1242             .expect("input too large; ran out of NodeIds");
1243         self.next_node_id = ast::NodeId::from_usize(next);
1244         self.next_node_id
1245     }
1246
1247     pub fn lint_buffer(&mut self) -> &mut lint::LintBuffer {
1248         &mut self.lint_buffer
1249     }
1250
1251     pub fn arenas() -> ResolverArenas<'a> {
1252         Default::default()
1253     }
1254
1255     pub fn into_outputs(self) -> ResolverOutputs {
1256         ResolverOutputs {
1257             definitions: self.definitions,
1258             cstore: Box::new(self.crate_loader.into_cstore()),
1259             extern_crate_map: self.extern_crate_map,
1260             export_map: self.export_map,
1261             trait_map: self.trait_map,
1262             glob_map: self.glob_map,
1263             maybe_unused_trait_imports: self.maybe_unused_trait_imports,
1264             maybe_unused_extern_crates: self.maybe_unused_extern_crates,
1265             extern_prelude: self.extern_prelude.iter().map(|(ident, entry)| {
1266                 (ident.name, entry.introduced_by_item)
1267             }).collect(),
1268         }
1269     }
1270
1271     pub fn clone_outputs(&self) -> ResolverOutputs {
1272         ResolverOutputs {
1273             definitions: self.definitions.clone(),
1274             cstore: Box::new(self.cstore().clone()),
1275             extern_crate_map: self.extern_crate_map.clone(),
1276             export_map: self.export_map.clone(),
1277             trait_map: self.trait_map.clone(),
1278             glob_map: self.glob_map.clone(),
1279             maybe_unused_trait_imports: self.maybe_unused_trait_imports.clone(),
1280             maybe_unused_extern_crates: self.maybe_unused_extern_crates.clone(),
1281             extern_prelude: self.extern_prelude.iter().map(|(ident, entry)| {
1282                 (ident.name, entry.introduced_by_item)
1283             }).collect(),
1284         }
1285     }
1286
1287     pub fn cstore(&self) -> &CStore {
1288         self.crate_loader.cstore()
1289     }
1290
1291     fn non_macro_attr(&self, mark_used: bool) -> Lrc<SyntaxExtension> {
1292         self.non_macro_attrs[mark_used as usize].clone()
1293     }
1294
1295     fn dummy_ext(&self, macro_kind: MacroKind) -> Lrc<SyntaxExtension> {
1296         match macro_kind {
1297             MacroKind::Bang => self.dummy_ext_bang.clone(),
1298             MacroKind::Derive => self.dummy_ext_derive.clone(),
1299             MacroKind::Attr => self.non_macro_attr(true),
1300         }
1301     }
1302
1303     /// Runs the function on each namespace.
1304     fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
1305         f(self, TypeNS);
1306         f(self, ValueNS);
1307         f(self, MacroNS);
1308     }
1309
1310     fn is_builtin_macro(&mut self, res: Res) -> bool {
1311         self.get_macro(res).map_or(false, |ext| ext.is_builtin)
1312     }
1313
1314     fn macro_def(&self, mut ctxt: SyntaxContext) -> DefId {
1315         loop {
1316             match self.macro_defs.get(&ctxt.outer_expn()) {
1317                 Some(&def_id) => return def_id,
1318                 None => ctxt.remove_mark(),
1319             };
1320         }
1321     }
1322
1323     /// Entry point to crate resolution.
1324     pub fn resolve_crate(&mut self, krate: &Crate) {
1325         let _prof_timer =
1326             self.session.prof.generic_activity("resolve_crate");
1327
1328         ImportResolver { r: self }.finalize_imports();
1329         self.finalize_macro_resolutions();
1330
1331         self.late_resolve_crate(krate);
1332
1333         self.check_unused(krate);
1334         self.report_errors(krate);
1335         self.crate_loader.postprocess(krate);
1336     }
1337
1338     fn new_module(
1339         &self,
1340         parent: Module<'a>,
1341         kind: ModuleKind,
1342         normal_ancestor_id: DefId,
1343         expn_id: ExpnId,
1344         span: Span,
1345     ) -> Module<'a> {
1346         let module = ModuleData::new(Some(parent), kind, normal_ancestor_id, expn_id, span);
1347         self.arenas.alloc_module(module)
1348     }
1349
1350     fn new_key(&mut self, ident: Ident, ns: Namespace) -> BindingKey {
1351         let ident = ident.modern();
1352         let disambiguator = if ident.name == kw::Underscore {
1353             self.underscore_disambiguator += 1;
1354             self.underscore_disambiguator
1355         } else {
1356             0
1357         };
1358         BindingKey { ident, ns, disambiguator }
1359     }
1360
1361     fn resolutions(&mut self, module: Module<'a>) -> &'a Resolutions<'a> {
1362         if module.populate_on_access.get() {
1363             module.populate_on_access.set(false);
1364             self.build_reduced_graph_external(module);
1365         }
1366         &module.lazy_resolutions
1367     }
1368
1369     fn resolution(&mut self, module: Module<'a>, key: BindingKey)
1370                   -> &'a RefCell<NameResolution<'a>> {
1371         *self.resolutions(module).borrow_mut().entry(key)
1372                .or_insert_with(|| self.arenas.alloc_name_resolution())
1373     }
1374
1375     fn record_use(&mut self, ident: Ident, ns: Namespace,
1376                   used_binding: &'a NameBinding<'a>, is_lexical_scope: bool) {
1377         if let Some((b2, kind)) = used_binding.ambiguity {
1378             self.ambiguity_errors.push(AmbiguityError {
1379                 kind, ident, b1: used_binding, b2,
1380                 misc1: AmbiguityErrorMisc::None,
1381                 misc2: AmbiguityErrorMisc::None,
1382             });
1383         }
1384         if let NameBindingKind::Import { directive, binding, ref used } = used_binding.kind {
1385             // Avoid marking `extern crate` items that refer to a name from extern prelude,
1386             // but not introduce it, as used if they are accessed from lexical scope.
1387             if is_lexical_scope {
1388                 if let Some(entry) = self.extern_prelude.get(&ident.modern()) {
1389                     if let Some(crate_item) = entry.extern_crate_item {
1390                         if ptr::eq(used_binding, crate_item) && !entry.introduced_by_item {
1391                             return;
1392                         }
1393                     }
1394                 }
1395             }
1396             used.set(true);
1397             directive.used.set(true);
1398             self.used_imports.insert((directive.id, ns));
1399             self.add_to_glob_map(&directive, ident);
1400             self.record_use(ident, ns, binding, false);
1401         }
1402     }
1403
1404     #[inline]
1405     fn add_to_glob_map(&mut self, directive: &ImportDirective<'_>, ident: Ident) {
1406         if directive.is_glob() {
1407             self.glob_map.entry(directive.id).or_default().insert(ident.name);
1408         }
1409     }
1410
1411     /// A generic scope visitor.
1412     /// Visits scopes in order to resolve some identifier in them or perform other actions.
1413     /// If the callback returns `Some` result, we stop visiting scopes and return it.
1414     fn visit_scopes<T>(
1415         &mut self,
1416         scope_set: ScopeSet,
1417         parent_scope: &ParentScope<'a>,
1418         ident: Ident,
1419         mut visitor: impl FnMut(&mut Self, Scope<'a>, /*use_prelude*/ bool, Ident) -> Option<T>,
1420     ) -> Option<T> {
1421         // General principles:
1422         // 1. Not controlled (user-defined) names should have higher priority than controlled names
1423         //    built into the language or standard library. This way we can add new names into the
1424         //    language or standard library without breaking user code.
1425         // 2. "Closed set" below means new names cannot appear after the current resolution attempt.
1426         // Places to search (in order of decreasing priority):
1427         // (Type NS)
1428         // 1. FIXME: Ribs (type parameters), there's no necessary infrastructure yet
1429         //    (open set, not controlled).
1430         // 2. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1431         //    (open, not controlled).
1432         // 3. Extern prelude (open, the open part is from macro expansions, not controlled).
1433         // 4. Tool modules (closed, controlled right now, but not in the future).
1434         // 5. Standard library prelude (de-facto closed, controlled).
1435         // 6. Language prelude (closed, controlled).
1436         // (Value NS)
1437         // 1. FIXME: Ribs (local variables), there's no necessary infrastructure yet
1438         //    (open set, not controlled).
1439         // 2. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1440         //    (open, not controlled).
1441         // 3. Standard library prelude (de-facto closed, controlled).
1442         // (Macro NS)
1443         // 1-3. Derive helpers (open, not controlled). All ambiguities with other names
1444         //    are currently reported as errors. They should be higher in priority than preludes
1445         //    and probably even names in modules according to the "general principles" above. They
1446         //    also should be subject to restricted shadowing because are effectively produced by
1447         //    derives (you need to resolve the derive first to add helpers into scope), but they
1448         //    should be available before the derive is expanded for compatibility.
1449         //    It's mess in general, so we are being conservative for now.
1450         // 1-3. `macro_rules` (open, not controlled), loop through legacy scopes. Have higher
1451         //    priority than prelude macros, but create ambiguities with macros in modules.
1452         // 1-3. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1453         //    (open, not controlled). Have higher priority than prelude macros, but create
1454         //    ambiguities with `macro_rules`.
1455         // 4. `macro_use` prelude (open, the open part is from macro expansions, not controlled).
1456         // 4a. User-defined prelude from macro-use
1457         //    (open, the open part is from macro expansions, not controlled).
1458         // 4b. "Standard library prelude" part implemented through `macro-use` (closed, controlled).
1459         // 4c. Standard library prelude (de-facto closed, controlled).
1460         // 6. Language prelude: builtin attributes (closed, controlled).
1461         // 4-6. Legacy plugin helpers (open, not controlled). Similar to derive helpers,
1462         //    but introduced by legacy plugins using `register_attribute`. Priority is somewhere
1463         //    in prelude, not sure where exactly (creates ambiguities with any other prelude names).
1464
1465         let rust_2015 = ident.span.rust_2015();
1466         let (ns, is_absolute_path) = match scope_set {
1467             ScopeSet::All(ns, _) => (ns, false),
1468             ScopeSet::AbsolutePath(ns) => (ns, true),
1469             ScopeSet::Macro(_) => (MacroNS, false),
1470         };
1471         // Jump out of trait or enum modules, they do not act as scopes.
1472         let module = parent_scope.module.nearest_item_scope();
1473         let mut scope = match ns {
1474             _ if is_absolute_path => Scope::CrateRoot,
1475             TypeNS | ValueNS => Scope::Module(module),
1476             MacroNS => Scope::DeriveHelpers,
1477         };
1478         let mut ident = ident.modern();
1479         let mut use_prelude = !module.no_implicit_prelude;
1480
1481         loop {
1482             let visit = match scope {
1483                 Scope::DeriveHelpers => true,
1484                 Scope::MacroRules(..) => true,
1485                 Scope::CrateRoot => true,
1486                 Scope::Module(..) => true,
1487                 Scope::MacroUsePrelude => use_prelude || rust_2015,
1488                 Scope::BuiltinAttrs => true,
1489                 Scope::LegacyPluginHelpers => use_prelude || rust_2015,
1490                 Scope::ExternPrelude => use_prelude || is_absolute_path,
1491                 Scope::ToolPrelude => use_prelude,
1492                 Scope::StdLibPrelude => use_prelude || ns == MacroNS,
1493                 Scope::BuiltinTypes => true,
1494             };
1495
1496             if visit {
1497                 if let break_result @ Some(..) = visitor(self, scope, use_prelude, ident) {
1498                     return break_result;
1499                 }
1500             }
1501
1502             scope = match scope {
1503                 Scope::DeriveHelpers =>
1504                     Scope::MacroRules(parent_scope.legacy),
1505                 Scope::MacroRules(legacy_scope) => match legacy_scope {
1506                     LegacyScope::Binding(binding) => Scope::MacroRules(
1507                         binding.parent_legacy_scope
1508                     ),
1509                     LegacyScope::Invocation(invoc_id) => Scope::MacroRules(
1510                         self.output_legacy_scopes.get(&invoc_id).cloned()
1511                             .unwrap_or(self.invocation_parent_scopes[&invoc_id].legacy)
1512                     ),
1513                     LegacyScope::Empty => Scope::Module(module),
1514                 }
1515                 Scope::CrateRoot => match ns {
1516                     TypeNS => {
1517                         ident.span.adjust(ExpnId::root());
1518                         Scope::ExternPrelude
1519                     }
1520                     ValueNS | MacroNS => break,
1521                 }
1522                 Scope::Module(module) => {
1523                     use_prelude = !module.no_implicit_prelude;
1524                     match self.hygienic_lexical_parent(module, &mut ident.span) {
1525                         Some(parent_module) => Scope::Module(parent_module),
1526                         None => {
1527                             ident.span.adjust(ExpnId::root());
1528                             match ns {
1529                                 TypeNS => Scope::ExternPrelude,
1530                                 ValueNS => Scope::StdLibPrelude,
1531                                 MacroNS => Scope::MacroUsePrelude,
1532                             }
1533                         }
1534                     }
1535                 }
1536                 Scope::MacroUsePrelude => Scope::StdLibPrelude,
1537                 Scope::BuiltinAttrs => Scope::LegacyPluginHelpers,
1538                 Scope::LegacyPluginHelpers => break, // nowhere else to search
1539                 Scope::ExternPrelude if is_absolute_path => break,
1540                 Scope::ExternPrelude => Scope::ToolPrelude,
1541                 Scope::ToolPrelude => Scope::StdLibPrelude,
1542                 Scope::StdLibPrelude => match ns {
1543                     TypeNS => Scope::BuiltinTypes,
1544                     ValueNS => break, // nowhere else to search
1545                     MacroNS => Scope::BuiltinAttrs,
1546                 }
1547                 Scope::BuiltinTypes => break, // nowhere else to search
1548             };
1549         }
1550
1551         None
1552     }
1553
1554     /// This resolves the identifier `ident` in the namespace `ns` in the current lexical scope.
1555     /// More specifically, we proceed up the hierarchy of scopes and return the binding for
1556     /// `ident` in the first scope that defines it (or None if no scopes define it).
1557     ///
1558     /// A block's items are above its local variables in the scope hierarchy, regardless of where
1559     /// the items are defined in the block. For example,
1560     /// ```rust
1561     /// fn f() {
1562     ///    g(); // Since there are no local variables in scope yet, this resolves to the item.
1563     ///    let g = || {};
1564     ///    fn g() {}
1565     ///    g(); // This resolves to the local variable `g` since it shadows the item.
1566     /// }
1567     /// ```
1568     ///
1569     /// Invariant: This must only be called during main resolution, not during
1570     /// import resolution.
1571     fn resolve_ident_in_lexical_scope(&mut self,
1572                                       mut ident: Ident,
1573                                       ns: Namespace,
1574                                       parent_scope: &ParentScope<'a>,
1575                                       record_used_id: Option<NodeId>,
1576                                       path_span: Span,
1577                                       ribs: &[Rib<'a>])
1578                                       -> Option<LexicalScopeBinding<'a>> {
1579         assert!(ns == TypeNS || ns == ValueNS);
1580         if ident.name == kw::Invalid {
1581             return Some(LexicalScopeBinding::Res(Res::Err));
1582         }
1583         let (general_span, modern_span) = if ident.name == kw::SelfUpper {
1584             // FIXME(jseyfried) improve `Self` hygiene
1585             let empty_span = ident.span.with_ctxt(SyntaxContext::root());
1586             (empty_span, empty_span)
1587         } else if ns == TypeNS {
1588             let modern_span = ident.span.modern();
1589             (modern_span, modern_span)
1590         } else {
1591             (ident.span.modern_and_legacy(), ident.span.modern())
1592         };
1593         ident.span = general_span;
1594         let modern_ident = Ident { span: modern_span, ..ident };
1595
1596         // Walk backwards up the ribs in scope.
1597         let record_used = record_used_id.is_some();
1598         let mut module = self.graph_root;
1599         for i in (0 .. ribs.len()).rev() {
1600             debug!("walk rib\n{:?}", ribs[i].bindings);
1601             // Use the rib kind to determine whether we are resolving parameters
1602             // (modern hygiene) or local variables (legacy hygiene).
1603             let rib_ident = if ribs[i].kind.contains_params() {
1604                 modern_ident
1605             } else {
1606                 ident
1607             };
1608             if let Some(res) = ribs[i].bindings.get(&rib_ident).cloned() {
1609                 // The ident resolves to a type parameter or local variable.
1610                 return Some(LexicalScopeBinding::Res(
1611                     self.validate_res_from_ribs(i, rib_ident, res, record_used, path_span, ribs),
1612                 ));
1613             }
1614
1615             module = match ribs[i].kind {
1616                 ModuleRibKind(module) => module,
1617                 MacroDefinition(def) if def == self.macro_def(ident.span.ctxt()) => {
1618                     // If an invocation of this macro created `ident`, give up on `ident`
1619                     // and switch to `ident`'s source from the macro definition.
1620                     ident.span.remove_mark();
1621                     continue
1622                 }
1623                 _ => continue,
1624             };
1625
1626
1627             let item = self.resolve_ident_in_module_unadjusted(
1628                 ModuleOrUniformRoot::Module(module),
1629                 ident,
1630                 ns,
1631                 parent_scope,
1632                 record_used,
1633                 path_span,
1634             );
1635             if let Ok(binding) = item {
1636                 // The ident resolves to an item.
1637                 return Some(LexicalScopeBinding::Item(binding));
1638             }
1639
1640             match module.kind {
1641                 ModuleKind::Block(..) => {}, // We can see through blocks
1642                 _ => break,
1643             }
1644         }
1645
1646         ident = modern_ident;
1647         let mut poisoned = None;
1648         loop {
1649             let opt_module = if let Some(node_id) = record_used_id {
1650                 self.hygienic_lexical_parent_with_compatibility_fallback(module, &mut ident.span,
1651                                                                          node_id, &mut poisoned)
1652             } else {
1653                 self.hygienic_lexical_parent(module, &mut ident.span)
1654             };
1655             module = unwrap_or!(opt_module, break);
1656             let adjusted_parent_scope = &ParentScope { module, ..*parent_scope };
1657             let result = self.resolve_ident_in_module_unadjusted(
1658                 ModuleOrUniformRoot::Module(module),
1659                 ident,
1660                 ns,
1661                 adjusted_parent_scope,
1662                 record_used,
1663                 path_span,
1664             );
1665
1666             match result {
1667                 Ok(binding) => {
1668                     if let Some(node_id) = poisoned {
1669                         self.lint_buffer.buffer_lint_with_diagnostic(
1670                             lint::builtin::PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
1671                             node_id, ident.span,
1672                             &format!("cannot find {} `{}` in this scope", ns.descr(), ident),
1673                             lint::builtin::BuiltinLintDiagnostics::
1674                                 ProcMacroDeriveResolutionFallback(ident.span),
1675                         );
1676                     }
1677                     return Some(LexicalScopeBinding::Item(binding))
1678                 }
1679                 Err(Determined) => continue,
1680                 Err(Undetermined) =>
1681                     span_bug!(ident.span, "undetermined resolution during main resolution pass"),
1682             }
1683         }
1684
1685         if !module.no_implicit_prelude {
1686             ident.span.adjust(ExpnId::root());
1687             if ns == TypeNS {
1688                 if let Some(binding) = self.extern_prelude_get(ident, !record_used) {
1689                     return Some(LexicalScopeBinding::Item(binding));
1690                 }
1691             }
1692             if ns == TypeNS && KNOWN_TOOLS.contains(&ident.name) {
1693                 let binding = (Res::ToolMod, ty::Visibility::Public,
1694                                DUMMY_SP, ExpnId::root()).to_name_binding(self.arenas);
1695                 return Some(LexicalScopeBinding::Item(binding));
1696             }
1697             if let Some(prelude) = self.prelude {
1698                 if let Ok(binding) = self.resolve_ident_in_module_unadjusted(
1699                     ModuleOrUniformRoot::Module(prelude),
1700                     ident,
1701                     ns,
1702                     parent_scope,
1703                     false,
1704                     path_span,
1705                 ) {
1706                     return Some(LexicalScopeBinding::Item(binding));
1707                 }
1708             }
1709         }
1710
1711         None
1712     }
1713
1714     fn hygienic_lexical_parent(&mut self, module: Module<'a>, span: &mut Span)
1715                                -> Option<Module<'a>> {
1716         if !module.expansion.outer_expn_is_descendant_of(span.ctxt()) {
1717             return Some(self.macro_def_scope(span.remove_mark()));
1718         }
1719
1720         if let ModuleKind::Block(..) = module.kind {
1721             return Some(module.parent.unwrap().nearest_item_scope());
1722         }
1723
1724         None
1725     }
1726
1727     fn hygienic_lexical_parent_with_compatibility_fallback(&mut self, module: Module<'a>,
1728                                                            span: &mut Span, node_id: NodeId,
1729                                                            poisoned: &mut Option<NodeId>)
1730                                                            -> Option<Module<'a>> {
1731         if let module @ Some(..) = self.hygienic_lexical_parent(module, span) {
1732             return module;
1733         }
1734
1735         // We need to support the next case under a deprecation warning
1736         // ```
1737         // struct MyStruct;
1738         // ---- begin: this comes from a proc macro derive
1739         // mod implementation_details {
1740         //     // Note that `MyStruct` is not in scope here.
1741         //     impl SomeTrait for MyStruct { ... }
1742         // }
1743         // ---- end
1744         // ```
1745         // So we have to fall back to the module's parent during lexical resolution in this case.
1746         if let Some(parent) = module.parent {
1747             // Inner module is inside the macro, parent module is outside of the macro.
1748             if module.expansion != parent.expansion &&
1749             module.expansion.is_descendant_of(parent.expansion) {
1750                 // The macro is a proc macro derive
1751                 if let Some(&def_id) = self.macro_defs.get(&module.expansion) {
1752                     if let Some(ext) = self.get_macro_by_def_id(def_id) {
1753                         if !ext.is_builtin && ext.macro_kind() == MacroKind::Derive {
1754                             if parent.expansion.outer_expn_is_descendant_of(span.ctxt()) {
1755                                 *poisoned = Some(node_id);
1756                                 return module.parent;
1757                             }
1758                         }
1759                     }
1760                 }
1761             }
1762         }
1763
1764         None
1765     }
1766
1767     fn resolve_ident_in_module(
1768         &mut self,
1769         module: ModuleOrUniformRoot<'a>,
1770         ident: Ident,
1771         ns: Namespace,
1772         parent_scope: &ParentScope<'a>,
1773         record_used: bool,
1774         path_span: Span
1775     ) -> Result<&'a NameBinding<'a>, Determinacy> {
1776         self.resolve_ident_in_module_ext(
1777             module, ident, ns, parent_scope, record_used, path_span
1778         ).map_err(|(determinacy, _)| determinacy)
1779     }
1780
1781     fn resolve_ident_in_module_ext(
1782         &mut self,
1783         module: ModuleOrUniformRoot<'a>,
1784         mut ident: Ident,
1785         ns: Namespace,
1786         parent_scope: &ParentScope<'a>,
1787         record_used: bool,
1788         path_span: Span
1789     ) -> Result<&'a NameBinding<'a>, (Determinacy, Weak)> {
1790         let tmp_parent_scope;
1791         let mut adjusted_parent_scope = parent_scope;
1792         match module {
1793             ModuleOrUniformRoot::Module(m) => {
1794                 if let Some(def) = ident.span.modernize_and_adjust(m.expansion) {
1795                     tmp_parent_scope =
1796                         ParentScope { module: self.macro_def_scope(def), ..*parent_scope };
1797                     adjusted_parent_scope = &tmp_parent_scope;
1798                 }
1799             }
1800             ModuleOrUniformRoot::ExternPrelude => {
1801                 ident.span.modernize_and_adjust(ExpnId::root());
1802             }
1803             ModuleOrUniformRoot::CrateRootAndExternPrelude |
1804             ModuleOrUniformRoot::CurrentScope => {
1805                 // No adjustments
1806             }
1807         }
1808         let result = self.resolve_ident_in_module_unadjusted_ext(
1809             module, ident, ns, adjusted_parent_scope, false, record_used, path_span,
1810         );
1811         result
1812     }
1813
1814     fn resolve_crate_root(&mut self, ident: Ident) -> Module<'a> {
1815         let mut ctxt = ident.span.ctxt();
1816         let mark = if ident.name == kw::DollarCrate {
1817             // When resolving `$crate` from a `macro_rules!` invoked in a `macro`,
1818             // we don't want to pretend that the `macro_rules!` definition is in the `macro`
1819             // as described in `SyntaxContext::apply_mark`, so we ignore prepended modern marks.
1820             // FIXME: This is only a guess and it doesn't work correctly for `macro_rules!`
1821             // definitions actually produced by `macro` and `macro` definitions produced by
1822             // `macro_rules!`, but at least such configurations are not stable yet.
1823             ctxt = ctxt.modern_and_legacy();
1824             let mut iter = ctxt.marks().into_iter().rev().peekable();
1825             let mut result = None;
1826             // Find the last modern mark from the end if it exists.
1827             while let Some(&(mark, transparency)) = iter.peek() {
1828                 if transparency == Transparency::Opaque {
1829                     result = Some(mark);
1830                     iter.next();
1831                 } else {
1832                     break;
1833                 }
1834             }
1835             // Then find the last legacy mark from the end if it exists.
1836             for (mark, transparency) in iter {
1837                 if transparency == Transparency::SemiTransparent {
1838                     result = Some(mark);
1839                 } else {
1840                     break;
1841                 }
1842             }
1843             result
1844         } else {
1845             ctxt = ctxt.modern();
1846             ctxt.adjust(ExpnId::root())
1847         };
1848         let module = match mark {
1849             Some(def) => self.macro_def_scope(def),
1850             None => return self.graph_root,
1851         };
1852         self.get_module(DefId { index: CRATE_DEF_INDEX, ..module.normal_ancestor_id })
1853     }
1854
1855     fn resolve_self(&mut self, ctxt: &mut SyntaxContext, module: Module<'a>) -> Module<'a> {
1856         let mut module = self.get_module(module.normal_ancestor_id);
1857         while module.span.ctxt().modern() != *ctxt {
1858             let parent = module.parent.unwrap_or_else(|| self.macro_def_scope(ctxt.remove_mark()));
1859             module = self.get_module(parent.normal_ancestor_id);
1860         }
1861         module
1862     }
1863
1864     fn resolve_path(
1865         &mut self,
1866         path: &[Segment],
1867         opt_ns: Option<Namespace>, // `None` indicates a module path in import
1868         parent_scope: &ParentScope<'a>,
1869         record_used: bool,
1870         path_span: Span,
1871         crate_lint: CrateLint,
1872     ) -> PathResult<'a> {
1873         self.resolve_path_with_ribs(
1874             path, opt_ns, parent_scope, record_used, path_span, crate_lint, None
1875         )
1876     }
1877
1878     fn resolve_path_with_ribs(
1879         &mut self,
1880         path: &[Segment],
1881         opt_ns: Option<Namespace>, // `None` indicates a module path in import
1882         parent_scope: &ParentScope<'a>,
1883         record_used: bool,
1884         path_span: Span,
1885         crate_lint: CrateLint,
1886         ribs: Option<&PerNS<Vec<Rib<'a>>>>,
1887     ) -> PathResult<'a> {
1888         let mut module = None;
1889         let mut allow_super = true;
1890         let mut second_binding = None;
1891
1892         debug!(
1893             "resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
1894              path_span={:?}, crate_lint={:?})",
1895             path,
1896             opt_ns,
1897             record_used,
1898             path_span,
1899             crate_lint,
1900         );
1901
1902         for (i, &Segment { ident, id }) in path.iter().enumerate() {
1903             debug!("resolve_path ident {} {:?} {:?}", i, ident, id);
1904             let record_segment_res = |this: &mut Self, res| {
1905                 if record_used {
1906                     if let Some(id) = id {
1907                         if !this.partial_res_map.contains_key(&id) {
1908                             assert!(id != ast::DUMMY_NODE_ID, "Trying to resolve dummy id");
1909                             this.record_partial_res(id, PartialRes::new(res));
1910                         }
1911                     }
1912                 }
1913             };
1914
1915             let is_last = i == path.len() - 1;
1916             let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
1917             let name = ident.name;
1918
1919             allow_super &= ns == TypeNS &&
1920                 (name == kw::SelfLower ||
1921                  name == kw::Super);
1922
1923             if ns == TypeNS {
1924                 if allow_super && name == kw::Super {
1925                     let mut ctxt = ident.span.ctxt().modern();
1926                     let self_module = match i {
1927                         0 => Some(self.resolve_self(&mut ctxt, parent_scope.module)),
1928                         _ => match module {
1929                             Some(ModuleOrUniformRoot::Module(module)) => Some(module),
1930                             _ => None,
1931                         },
1932                     };
1933                     if let Some(self_module) = self_module {
1934                         if let Some(parent) = self_module.parent {
1935                             module = Some(ModuleOrUniformRoot::Module(
1936                                 self.resolve_self(&mut ctxt, parent)));
1937                             continue;
1938                         }
1939                     }
1940                     let msg = "there are too many initial `super`s.".to_string();
1941                     return PathResult::Failed {
1942                         span: ident.span,
1943                         label: msg,
1944                         suggestion: None,
1945                         is_error_from_last_segment: false,
1946                     };
1947                 }
1948                 if i == 0 {
1949                     if name == kw::SelfLower {
1950                         let mut ctxt = ident.span.ctxt().modern();
1951                         module = Some(ModuleOrUniformRoot::Module(
1952                             self.resolve_self(&mut ctxt, parent_scope.module)));
1953                         continue;
1954                     }
1955                     if name == kw::PathRoot && ident.span.rust_2018() {
1956                         module = Some(ModuleOrUniformRoot::ExternPrelude);
1957                         continue;
1958                     }
1959                     if name == kw::PathRoot &&
1960                        ident.span.rust_2015() && self.session.rust_2018() {
1961                         // `::a::b` from 2015 macro on 2018 global edition
1962                         module = Some(ModuleOrUniformRoot::CrateRootAndExternPrelude);
1963                         continue;
1964                     }
1965                     if name == kw::PathRoot ||
1966                        name == kw::Crate ||
1967                        name == kw::DollarCrate {
1968                         // `::a::b`, `crate::a::b` or `$crate::a::b`
1969                         module = Some(ModuleOrUniformRoot::Module(
1970                             self.resolve_crate_root(ident)));
1971                         continue;
1972                     }
1973                 }
1974             }
1975
1976             // Report special messages for path segment keywords in wrong positions.
1977             if ident.is_path_segment_keyword() && i != 0 {
1978                 let name_str = if name == kw::PathRoot {
1979                     "crate root".to_string()
1980                 } else {
1981                     format!("`{}`", name)
1982                 };
1983                 let label = if i == 1 && path[0].ident.name == kw::PathRoot {
1984                     format!("global paths cannot start with {}", name_str)
1985                 } else {
1986                     format!("{} in paths can only be used in start position", name_str)
1987                 };
1988                 return PathResult::Failed {
1989                     span: ident.span,
1990                     label,
1991                     suggestion: None,
1992                     is_error_from_last_segment: false,
1993                 };
1994             }
1995
1996             let binding = if let Some(module) = module {
1997                 self.resolve_ident_in_module(
1998                     module, ident, ns, parent_scope, record_used, path_span
1999                 )
2000             } else if ribs.is_none() || opt_ns.is_none() || opt_ns == Some(MacroNS) {
2001                 let scopes = ScopeSet::All(ns, opt_ns.is_none());
2002                 self.early_resolve_ident_in_lexical_scope(ident, scopes, parent_scope, record_used,
2003                                                           record_used, path_span)
2004             } else {
2005                 let record_used_id =
2006                     if record_used { crate_lint.node_id().or(Some(CRATE_NODE_ID)) } else { None };
2007                 match self.resolve_ident_in_lexical_scope(
2008                     ident, ns, parent_scope, record_used_id, path_span, &ribs.unwrap()[ns]
2009                 ) {
2010                     // we found a locally-imported or available item/module
2011                     Some(LexicalScopeBinding::Item(binding)) => Ok(binding),
2012                     // we found a local variable or type param
2013                     Some(LexicalScopeBinding::Res(res))
2014                             if opt_ns == Some(TypeNS) || opt_ns == Some(ValueNS) => {
2015                         record_segment_res(self, res);
2016                         return PathResult::NonModule(PartialRes::with_unresolved_segments(
2017                             res, path.len() - 1
2018                         ));
2019                     }
2020                     _ => Err(Determinacy::determined(record_used)),
2021                 }
2022             };
2023
2024             match binding {
2025                 Ok(binding) => {
2026                     if i == 1 {
2027                         second_binding = Some(binding);
2028                     }
2029                     let res = binding.res();
2030                     let maybe_assoc = opt_ns != Some(MacroNS) && PathSource::Type.is_expected(res);
2031                     if let Some(next_module) = binding.module() {
2032                         module = Some(ModuleOrUniformRoot::Module(next_module));
2033                         record_segment_res(self, res);
2034                     } else if res == Res::ToolMod && i + 1 != path.len() {
2035                         if binding.is_import() {
2036                             self.session.struct_span_err(
2037                                 ident.span, "cannot use a tool module through an import"
2038                             ).span_note(
2039                                 binding.span, "the tool module imported here"
2040                             ).emit();
2041                         }
2042                         let res = Res::NonMacroAttr(NonMacroAttrKind::Tool);
2043                         return PathResult::NonModule(PartialRes::new(res));
2044                     } else if res == Res::Err {
2045                         return PathResult::NonModule(PartialRes::new(Res::Err));
2046                     } else if opt_ns.is_some() && (is_last || maybe_assoc) {
2047                         self.lint_if_path_starts_with_module(
2048                             crate_lint,
2049                             path,
2050                             path_span,
2051                             second_binding,
2052                         );
2053                         return PathResult::NonModule(PartialRes::with_unresolved_segments(
2054                             res, path.len() - i - 1
2055                         ));
2056                     } else {
2057                         let label = format!(
2058                             "`{}` is {} {}, not a module",
2059                             ident,
2060                             res.article(),
2061                             res.descr(),
2062                         );
2063
2064                         return PathResult::Failed {
2065                             span: ident.span,
2066                             label,
2067                             suggestion: None,
2068                             is_error_from_last_segment: is_last,
2069                         };
2070                     }
2071                 }
2072                 Err(Undetermined) => return PathResult::Indeterminate,
2073                 Err(Determined) => {
2074                     if let Some(ModuleOrUniformRoot::Module(module)) = module {
2075                         if opt_ns.is_some() && !module.is_normal() {
2076                             return PathResult::NonModule(PartialRes::with_unresolved_segments(
2077                                 module.res().unwrap(), path.len() - i
2078                             ));
2079                         }
2080                     }
2081                     let module_res = match module {
2082                         Some(ModuleOrUniformRoot::Module(module)) => module.res(),
2083                         _ => None,
2084                     };
2085                     let (label, suggestion) = if module_res == self.graph_root.res() {
2086                         let is_mod = |res| {
2087                             match res { Res::Def(DefKind::Mod, _) => true, _ => false }
2088                         };
2089                         let mut candidates =
2090                             self.lookup_import_candidates(ident, TypeNS, is_mod);
2091                         candidates.sort_by_cached_key(|c| {
2092                             (c.path.segments.len(), pprust::path_to_string(&c.path))
2093                         });
2094                         if let Some(candidate) = candidates.get(0) {
2095                             (
2096                                 String::from("unresolved import"),
2097                                 Some((
2098                                     vec![(ident.span, pprust::path_to_string(&candidate.path))],
2099                                     String::from("a similar path exists"),
2100                                     Applicability::MaybeIncorrect,
2101                                 )),
2102                             )
2103                         } else if !ident.is_reserved() {
2104                             (format!("maybe a missing crate `{}`?", ident), None)
2105                         } else {
2106                             // the parser will already have complained about the keyword being used
2107                             return PathResult::NonModule(PartialRes::new(Res::Err));
2108                         }
2109                     } else if i == 0 {
2110                         (format!("use of undeclared type or module `{}`", ident), None)
2111                     } else {
2112                         (format!("could not find `{}` in `{}`", ident, path[i - 1].ident), None)
2113                     };
2114                     return PathResult::Failed {
2115                         span: ident.span,
2116                         label,
2117                         suggestion,
2118                         is_error_from_last_segment: is_last,
2119                     };
2120                 }
2121             }
2122         }
2123
2124         self.lint_if_path_starts_with_module(crate_lint, path, path_span, second_binding);
2125
2126         PathResult::Module(match module {
2127             Some(module) => module,
2128             None if path.is_empty() => ModuleOrUniformRoot::CurrentScope,
2129             _ => span_bug!(path_span, "resolve_path: non-empty path `{:?}` has no module", path),
2130         })
2131     }
2132
2133     fn lint_if_path_starts_with_module(
2134         &mut self,
2135         crate_lint: CrateLint,
2136         path: &[Segment],
2137         path_span: Span,
2138         second_binding: Option<&NameBinding<'_>>,
2139     ) {
2140         let (diag_id, diag_span) = match crate_lint {
2141             CrateLint::No => return,
2142             CrateLint::SimplePath(id) => (id, path_span),
2143             CrateLint::UsePath { root_id, root_span } => (root_id, root_span),
2144             CrateLint::QPathTrait { qpath_id, qpath_span } => (qpath_id, qpath_span),
2145         };
2146
2147         let first_name = match path.get(0) {
2148             // In the 2018 edition this lint is a hard error, so nothing to do
2149             Some(seg) if seg.ident.span.rust_2015() && self.session.rust_2015() => seg.ident.name,
2150             _ => return,
2151         };
2152
2153         // We're only interested in `use` paths which should start with
2154         // `{{root}}` currently.
2155         if first_name != kw::PathRoot {
2156             return
2157         }
2158
2159         match path.get(1) {
2160             // If this import looks like `crate::...` it's already good
2161             Some(Segment { ident, .. }) if ident.name == kw::Crate => return,
2162             // Otherwise go below to see if it's an extern crate
2163             Some(_) => {}
2164             // If the path has length one (and it's `PathRoot` most likely)
2165             // then we don't know whether we're gonna be importing a crate or an
2166             // item in our crate. Defer this lint to elsewhere
2167             None => return,
2168         }
2169
2170         // If the first element of our path was actually resolved to an
2171         // `ExternCrate` (also used for `crate::...`) then no need to issue a
2172         // warning, this looks all good!
2173         if let Some(binding) = second_binding {
2174             if let NameBindingKind::Import { directive: d, .. } = binding.kind {
2175                 // Careful: we still want to rewrite paths from
2176                 // renamed extern crates.
2177                 if let ImportDirectiveSubclass::ExternCrate { source: None, .. } = d.subclass {
2178                     return
2179                 }
2180             }
2181         }
2182
2183         let diag = lint::builtin::BuiltinLintDiagnostics
2184             ::AbsPathWithModule(diag_span);
2185         self.lint_buffer.buffer_lint_with_diagnostic(
2186             lint::builtin::ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
2187             diag_id, diag_span,
2188             "absolute paths must start with `self`, `super`, \
2189             `crate`, or an external crate name in the 2018 edition",
2190             diag);
2191     }
2192
2193     // Validate a local resolution (from ribs).
2194     fn validate_res_from_ribs(
2195         &mut self,
2196         rib_index: usize,
2197         rib_ident: Ident,
2198         res: Res,
2199         record_used: bool,
2200         span: Span,
2201         all_ribs: &[Rib<'a>],
2202     ) -> Res {
2203         debug!("validate_res_from_ribs({:?})", res);
2204         let ribs = &all_ribs[rib_index + 1..];
2205
2206         // An invalid forward use of a type parameter from a previous default.
2207         if let ForwardTyParamBanRibKind = all_ribs[rib_index].kind {
2208             if record_used {
2209                 let res_error = if rib_ident.name == kw::SelfUpper {
2210                     ResolutionError::SelfInTyParamDefault
2211                 } else {
2212                     ResolutionError::ForwardDeclaredTyParam
2213                 };
2214                 self.report_error(span, res_error);
2215             }
2216             assert_eq!(res, Res::Err);
2217             return Res::Err;
2218         }
2219
2220         match res {
2221             Res::Local(_) => {
2222                 use ResolutionError::*;
2223                 let mut res_err = None;
2224
2225                 for rib in ribs {
2226                     match rib.kind {
2227                         NormalRibKind | ModuleRibKind(..) | MacroDefinition(..) |
2228                         ForwardTyParamBanRibKind => {
2229                             // Nothing to do. Continue.
2230                         }
2231                         ItemRibKind(_) | FnItemRibKind | AssocItemRibKind => {
2232                             // This was an attempt to access an upvar inside a
2233                             // named function item. This is not allowed, so we
2234                             // report an error.
2235                             if record_used {
2236                                 // We don't immediately trigger a resolve error, because
2237                                 // we want certain other resolution errors (namely those
2238                                 // emitted for `ConstantItemRibKind` below) to take
2239                                 // precedence.
2240                                 res_err = Some(CannotCaptureDynamicEnvironmentInFnItem);
2241                             }
2242                         }
2243                         ConstantItemRibKind => {
2244                             // Still doesn't deal with upvars
2245                             if record_used {
2246                                 self.report_error(span, AttemptToUseNonConstantValueInConstant);
2247                             }
2248                             return Res::Err;
2249                         }
2250                     }
2251                 }
2252                 if let Some(res_err) = res_err {
2253                      self.report_error(span, res_err);
2254                      return Res::Err;
2255                 }
2256             }
2257             Res::Def(DefKind::TyParam, _) | Res::SelfTy(..) => {
2258                 for rib in ribs {
2259                     let has_generic_params = match rib.kind {
2260                         NormalRibKind | AssocItemRibKind |
2261                         ModuleRibKind(..) | MacroDefinition(..) | ForwardTyParamBanRibKind |
2262                         ConstantItemRibKind => {
2263                             // Nothing to do. Continue.
2264                             continue;
2265                         }
2266                         // This was an attempt to use a type parameter outside its scope.
2267                         ItemRibKind(has_generic_params) => has_generic_params,
2268                         FnItemRibKind => HasGenericParams::Yes,
2269                     };
2270
2271                     if record_used {
2272                         self.report_error(span, ResolutionError::GenericParamsFromOuterFunction(
2273                             res, has_generic_params));
2274                     }
2275                     return Res::Err;
2276                 }
2277             }
2278             Res::Def(DefKind::ConstParam, _) => {
2279                 let mut ribs = ribs.iter().peekable();
2280                 if let Some(Rib { kind: FnItemRibKind, .. }) = ribs.peek() {
2281                     // When declaring const parameters inside function signatures, the first rib
2282                     // is always a `FnItemRibKind`. In this case, we can skip it, to avoid it
2283                     // (spuriously) conflicting with the const param.
2284                     ribs.next();
2285                 }
2286                 for rib in ribs {
2287                     let has_generic_params = match rib.kind {
2288                         ItemRibKind(has_generic_params) => has_generic_params,
2289                         FnItemRibKind => HasGenericParams::Yes,
2290                         _ => continue,
2291                     };
2292
2293                     // This was an attempt to use a const parameter outside its scope.
2294                     if record_used {
2295                         self.report_error(span, ResolutionError::GenericParamsFromOuterFunction(
2296                             res, has_generic_params));
2297                     }
2298                     return Res::Err;
2299                 }
2300             }
2301             _ => {}
2302         }
2303         res
2304     }
2305
2306     fn record_partial_res(&mut self, node_id: NodeId, resolution: PartialRes) {
2307         debug!("(recording res) recording {:?} for {}", resolution, node_id);
2308         if let Some(prev_res) = self.partial_res_map.insert(node_id, resolution) {
2309             panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
2310         }
2311     }
2312
2313     fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
2314         vis.is_accessible_from(module.normal_ancestor_id, self)
2315     }
2316
2317     fn set_binding_parent_module(&mut self, binding: &'a NameBinding<'a>, module: Module<'a>) {
2318         if let Some(old_module) = self.binding_parent_modules.insert(PtrKey(binding), module) {
2319             if !ptr::eq(module, old_module) {
2320                 span_bug!(binding.span, "parent module is reset for binding");
2321             }
2322         }
2323     }
2324
2325     fn disambiguate_legacy_vs_modern(
2326         &self,
2327         legacy: &'a NameBinding<'a>,
2328         modern: &'a NameBinding<'a>,
2329     ) -> bool {
2330         // Some non-controversial subset of ambiguities "modern macro name" vs "macro_rules"
2331         // is disambiguated to mitigate regressions from macro modularization.
2332         // Scoping for `macro_rules` behaves like scoping for `let` at module level, in general.
2333         match (self.binding_parent_modules.get(&PtrKey(legacy)),
2334                self.binding_parent_modules.get(&PtrKey(modern))) {
2335             (Some(legacy), Some(modern)) =>
2336                 legacy.normal_ancestor_id == modern.normal_ancestor_id &&
2337                 modern.is_ancestor_of(legacy),
2338             _ => false,
2339         }
2340     }
2341
2342     fn binding_description(&self, b: &NameBinding<'_>, ident: Ident, from_prelude: bool) -> String {
2343         let res = b.res();
2344         if b.span.is_dummy() {
2345             let add_built_in = match b.res() {
2346                 // These already contain the "built-in" prefix or look bad with it.
2347                 Res::NonMacroAttr(..) | Res::PrimTy(..) | Res::ToolMod => false,
2348                 _ => true,
2349             };
2350             let (built_in, from) = if from_prelude {
2351                 ("", " from prelude")
2352             } else if b.is_extern_crate() && !b.is_import() &&
2353                         self.session.opts.externs.get(&ident.as_str()).is_some() {
2354                 ("", " passed with `--extern`")
2355             } else if add_built_in {
2356                 (" built-in", "")
2357             } else {
2358                 ("", "")
2359             };
2360
2361             let article = if built_in.is_empty() { res.article() } else { "a" };
2362             format!("{a}{built_in} {thing}{from}",
2363                     a = article, thing = res.descr(), built_in = built_in, from = from)
2364         } else {
2365             let introduced = if b.is_import() { "imported" } else { "defined" };
2366             format!("the {thing} {introduced} here",
2367                     thing = res.descr(), introduced = introduced)
2368         }
2369     }
2370
2371     fn report_ambiguity_error(&self, ambiguity_error: &AmbiguityError<'_>) {
2372         let AmbiguityError { kind, ident, b1, b2, misc1, misc2 } = *ambiguity_error;
2373         let (b1, b2, misc1, misc2, swapped) = if b2.span.is_dummy() && !b1.span.is_dummy() {
2374             // We have to print the span-less alternative first, otherwise formatting looks bad.
2375             (b2, b1, misc2, misc1, true)
2376         } else {
2377             (b1, b2, misc1, misc2, false)
2378         };
2379
2380         let mut err = struct_span_err!(self.session, ident.span, E0659,
2381                                        "`{ident}` is ambiguous ({why})",
2382                                        ident = ident, why = kind.descr());
2383         err.span_label(ident.span, "ambiguous name");
2384
2385         let mut could_refer_to = |b: &NameBinding<'_>, misc: AmbiguityErrorMisc, also: &str| {
2386             let what = self.binding_description(b, ident, misc == AmbiguityErrorMisc::FromPrelude);
2387             let note_msg = format!("`{ident}` could{also} refer to {what}",
2388                                    ident = ident, also = also, what = what);
2389
2390             let thing = b.res().descr();
2391             let mut help_msgs = Vec::new();
2392             if b.is_glob_import() && (kind == AmbiguityKind::GlobVsGlob ||
2393                                       kind == AmbiguityKind::GlobVsExpanded ||
2394                                       kind == AmbiguityKind::GlobVsOuter &&
2395                                       swapped != also.is_empty()) {
2396                 help_msgs.push(format!("consider adding an explicit import of \
2397                                         `{ident}` to disambiguate", ident = ident))
2398             }
2399             if b.is_extern_crate() && ident.span.rust_2018() {
2400                 help_msgs.push(format!(
2401                     "use `::{ident}` to refer to this {thing} unambiguously",
2402                     ident = ident, thing = thing,
2403                 ))
2404             }
2405             if misc == AmbiguityErrorMisc::SuggestCrate {
2406                 help_msgs.push(format!(
2407                     "use `crate::{ident}` to refer to this {thing} unambiguously",
2408                     ident = ident, thing = thing,
2409                 ))
2410             } else if misc == AmbiguityErrorMisc::SuggestSelf {
2411                 help_msgs.push(format!(
2412                     "use `self::{ident}` to refer to this {thing} unambiguously",
2413                     ident = ident, thing = thing,
2414                 ))
2415             }
2416
2417             err.span_note(b.span, &note_msg);
2418             for (i, help_msg) in help_msgs.iter().enumerate() {
2419                 let or = if i == 0 { "" } else { "or " };
2420                 err.help(&format!("{}{}", or, help_msg));
2421             }
2422         };
2423
2424         could_refer_to(b1, misc1, "");
2425         could_refer_to(b2, misc2, " also");
2426         err.emit();
2427     }
2428
2429     fn report_errors(&mut self, krate: &Crate) {
2430         self.report_with_use_injections(krate);
2431
2432         for &(span_use, span_def) in &self.macro_expanded_macro_export_errors {
2433             let msg = "macro-expanded `macro_export` macros from the current crate \
2434                        cannot be referred to by absolute paths";
2435             self.lint_buffer.buffer_lint_with_diagnostic(
2436                 lint::builtin::MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
2437                 CRATE_NODE_ID, span_use, msg,
2438                 lint::builtin::BuiltinLintDiagnostics::
2439                     MacroExpandedMacroExportsAccessedByAbsolutePaths(span_def),
2440             );
2441         }
2442
2443         for ambiguity_error in &self.ambiguity_errors {
2444             self.report_ambiguity_error(ambiguity_error);
2445         }
2446
2447         let mut reported_spans = FxHashSet::default();
2448         for &PrivacyError(dedup_span, ident, binding) in &self.privacy_errors {
2449             if reported_spans.insert(dedup_span) {
2450                 let session = &self.session;
2451                 let mk_struct_span_error = |is_constructor| {
2452                     struct_span_err!(
2453                         session,
2454                         ident.span,
2455                         E0603,
2456                         "{}{} `{}` is private",
2457                         binding.res().descr(),
2458                         if is_constructor { " constructor"} else { "" },
2459                         ident.name,
2460                     )
2461                 };
2462
2463                 let mut err = if let NameBindingKind::Res(
2464                     Res::Def(DefKind::Ctor(CtorOf::Struct, CtorKind::Fn), ctor_def_id), _
2465                 ) = binding.kind {
2466                     let def_id = (&*self).parent(ctor_def_id).expect("no parent for a constructor");
2467                     if let Some(fields) = self.field_names.get(&def_id) {
2468                         let mut err = mk_struct_span_error(true);
2469                         let first_field = fields.first().expect("empty field list in the map");
2470                         err.span_label(
2471                             fields.iter().fold(first_field.span, |acc, field| acc.to(field.span)),
2472                             "a constructor is private if any of the fields is private",
2473                         );
2474                         err
2475                     } else {
2476                         mk_struct_span_error(false)
2477                     }
2478                 } else {
2479                     mk_struct_span_error(false)
2480                 };
2481
2482                 err.emit();
2483             }
2484         }
2485     }
2486
2487     fn report_with_use_injections(&mut self, krate: &Crate) {
2488         for UseError { mut err, candidates, node_id, better } in self.use_injections.drain(..) {
2489             let (span, found_use) = UsePlacementFinder::check(krate, node_id);
2490             if !candidates.is_empty() {
2491                 diagnostics::show_candidates(&mut err, span, &candidates, better, found_use);
2492             }
2493             err.emit();
2494         }
2495     }
2496
2497     fn report_conflict<'b>(&mut self,
2498                        parent: Module<'_>,
2499                        ident: Ident,
2500                        ns: Namespace,
2501                        new_binding: &NameBinding<'b>,
2502                        old_binding: &NameBinding<'b>) {
2503         // Error on the second of two conflicting names
2504         if old_binding.span.lo() > new_binding.span.lo() {
2505             return self.report_conflict(parent, ident, ns, old_binding, new_binding);
2506         }
2507
2508         let container = match parent.kind {
2509             ModuleKind::Def(DefKind::Mod, _, _) => "module",
2510             ModuleKind::Def(DefKind::Trait, _, _) => "trait",
2511             ModuleKind::Block(..) => "block",
2512             _ => "enum",
2513         };
2514
2515         let old_noun = match old_binding.is_import() {
2516             true => "import",
2517             false => "definition",
2518         };
2519
2520         let new_participle = match new_binding.is_import() {
2521             true => "imported",
2522             false => "defined",
2523         };
2524
2525         let (name, span) = (ident.name, self.session.source_map().def_span(new_binding.span));
2526
2527         if let Some(s) = self.name_already_seen.get(&name) {
2528             if s == &span {
2529                 return;
2530             }
2531         }
2532
2533         let old_kind = match (ns, old_binding.module()) {
2534             (ValueNS, _) => "value",
2535             (MacroNS, _) => "macro",
2536             (TypeNS, _) if old_binding.is_extern_crate() => "extern crate",
2537             (TypeNS, Some(module)) if module.is_normal() => "module",
2538             (TypeNS, Some(module)) if module.is_trait() => "trait",
2539             (TypeNS, _) => "type",
2540         };
2541
2542         let msg = format!("the name `{}` is defined multiple times", name);
2543
2544         let mut err = match (old_binding.is_extern_crate(), new_binding.is_extern_crate()) {
2545             (true, true) => struct_span_err!(self.session, span, E0259, "{}", msg),
2546             (true, _) | (_, true) => match new_binding.is_import() && old_binding.is_import() {
2547                 true => struct_span_err!(self.session, span, E0254, "{}", msg),
2548                 false => struct_span_err!(self.session, span, E0260, "{}", msg),
2549             },
2550             _ => match (old_binding.is_import(), new_binding.is_import()) {
2551                 (false, false) => struct_span_err!(self.session, span, E0428, "{}", msg),
2552                 (true, true) => struct_span_err!(self.session, span, E0252, "{}", msg),
2553                 _ => struct_span_err!(self.session, span, E0255, "{}", msg),
2554             },
2555         };
2556
2557         err.note(&format!("`{}` must be defined only once in the {} namespace of this {}",
2558                           name,
2559                           ns.descr(),
2560                           container));
2561
2562         err.span_label(span, format!("`{}` re{} here", name, new_participle));
2563         err.span_label(
2564             self.session.source_map().def_span(old_binding.span),
2565             format!("previous {} of the {} `{}` here", old_noun, old_kind, name),
2566         );
2567
2568         // See https://github.com/rust-lang/rust/issues/32354
2569         use NameBindingKind::Import;
2570         let directive = match (&new_binding.kind, &old_binding.kind) {
2571             // If there are two imports where one or both have attributes then prefer removing the
2572             // import without attributes.
2573             (Import { directive: new, .. }, Import { directive: old, .. }) if {
2574                 !new_binding.span.is_dummy() && !old_binding.span.is_dummy() &&
2575                     (new.has_attributes || old.has_attributes)
2576             } => {
2577                 if old.has_attributes {
2578                     Some((new, new_binding.span, true))
2579                 } else {
2580                     Some((old, old_binding.span, true))
2581                 }
2582             },
2583             // Otherwise prioritize the new binding.
2584             (Import { directive, .. }, other) if !new_binding.span.is_dummy() =>
2585                 Some((directive, new_binding.span, other.is_import())),
2586             (other, Import { directive, .. }) if !old_binding.span.is_dummy() =>
2587                 Some((directive, old_binding.span, other.is_import())),
2588             _ => None,
2589         };
2590
2591         // Check if the target of the use for both bindings is the same.
2592         let duplicate = new_binding.res().opt_def_id() == old_binding.res().opt_def_id();
2593         let has_dummy_span = new_binding.span.is_dummy() || old_binding.span.is_dummy();
2594         let from_item = self.extern_prelude.get(&ident)
2595             .map(|entry| entry.introduced_by_item)
2596             .unwrap_or(true);
2597         // Only suggest removing an import if both bindings are to the same def, if both spans
2598         // aren't dummy spans. Further, if both bindings are imports, then the ident must have
2599         // been introduced by a item.
2600         let should_remove_import = duplicate && !has_dummy_span &&
2601             ((new_binding.is_extern_crate() || old_binding.is_extern_crate()) || from_item);
2602
2603         match directive {
2604             Some((directive, span, true)) if should_remove_import && directive.is_nested() =>
2605                 self.add_suggestion_for_duplicate_nested_use(&mut err, directive, span),
2606             Some((directive, _, true)) if should_remove_import && !directive.is_glob() => {
2607                 // Simple case - remove the entire import. Due to the above match arm, this can
2608                 // only be a single use so just remove it entirely.
2609                 err.tool_only_span_suggestion(
2610                     directive.use_span_with_attributes,
2611                     "remove unnecessary import",
2612                     String::new(),
2613                     Applicability::MaybeIncorrect,
2614                 );
2615             },
2616             Some((directive, span, _)) =>
2617                 self.add_suggestion_for_rename_of_use(&mut err, name, directive, span),
2618             _ => {},
2619         }
2620
2621         err.emit();
2622         self.name_already_seen.insert(name, span);
2623     }
2624
2625     /// This function adds a suggestion to change the binding name of a new import that conflicts
2626     /// with an existing import.
2627     ///
2628     /// ```ignore (diagnostic)
2629     /// help: you can use `as` to change the binding name of the import
2630     ///    |
2631     /// LL | use foo::bar as other_bar;
2632     ///    |     ^^^^^^^^^^^^^^^^^^^^^
2633     /// ```
2634     fn add_suggestion_for_rename_of_use(
2635         &self,
2636         err: &mut DiagnosticBuilder<'_>,
2637         name: Name,
2638         directive: &ImportDirective<'_>,
2639         binding_span: Span,
2640     ) {
2641         let suggested_name = if name.as_str().chars().next().unwrap().is_uppercase() {
2642             format!("Other{}", name)
2643         } else {
2644             format!("other_{}", name)
2645         };
2646
2647         let mut suggestion = None;
2648         match directive.subclass {
2649             ImportDirectiveSubclass::SingleImport { type_ns_only: true, .. } =>
2650                 suggestion = Some(format!("self as {}", suggested_name)),
2651             ImportDirectiveSubclass::SingleImport { source, .. } => {
2652                 if let Some(pos) = source.span.hi().0.checked_sub(binding_span.lo().0)
2653                                                      .map(|pos| pos as usize) {
2654                     if let Ok(snippet) = self.session.source_map()
2655                                                      .span_to_snippet(binding_span) {
2656                         if pos <= snippet.len() {
2657                             suggestion = Some(format!(
2658                                 "{} as {}{}",
2659                                 &snippet[..pos],
2660                                 suggested_name,
2661                                 if snippet.ends_with(";") { ";" } else { "" }
2662                             ))
2663                         }
2664                     }
2665                 }
2666             }
2667             ImportDirectiveSubclass::ExternCrate { source, target, .. } =>
2668                 suggestion = Some(format!(
2669                     "extern crate {} as {};",
2670                     source.unwrap_or(target.name),
2671                     suggested_name,
2672                 )),
2673             _ => unreachable!(),
2674         }
2675
2676         let rename_msg = "you can use `as` to change the binding name of the import";
2677         if let Some(suggestion) = suggestion {
2678             err.span_suggestion(
2679                 binding_span,
2680                 rename_msg,
2681                 suggestion,
2682                 Applicability::MaybeIncorrect,
2683             );
2684         } else {
2685             err.span_label(binding_span, rename_msg);
2686         }
2687     }
2688
2689     /// This function adds a suggestion to remove a unnecessary binding from an import that is
2690     /// nested. In the following example, this function will be invoked to remove the `a` binding
2691     /// in the second use statement:
2692     ///
2693     /// ```ignore (diagnostic)
2694     /// use issue_52891::a;
2695     /// use issue_52891::{d, a, e};
2696     /// ```
2697     ///
2698     /// The following suggestion will be added:
2699     ///
2700     /// ```ignore (diagnostic)
2701     /// use issue_52891::{d, a, e};
2702     ///                      ^-- help: remove unnecessary import
2703     /// ```
2704     ///
2705     /// If the nested use contains only one import then the suggestion will remove the entire
2706     /// line.
2707     ///
2708     /// It is expected that the directive provided is a nested import - this isn't checked by the
2709     /// function. If this invariant is not upheld, this function's behaviour will be unexpected
2710     /// as characters expected by span manipulations won't be present.
2711     fn add_suggestion_for_duplicate_nested_use(
2712         &self,
2713         err: &mut DiagnosticBuilder<'_>,
2714         directive: &ImportDirective<'_>,
2715         binding_span: Span,
2716     ) {
2717         assert!(directive.is_nested());
2718         let message = "remove unnecessary import";
2719
2720         // Two examples will be used to illustrate the span manipulations we're doing:
2721         //
2722         // - Given `use issue_52891::{d, a, e};` where `a` is a duplicate then `binding_span` is
2723         //   `a` and `directive.use_span` is `issue_52891::{d, a, e};`.
2724         // - Given `use issue_52891::{d, e, a};` where `a` is a duplicate then `binding_span` is
2725         //   `a` and `directive.use_span` is `issue_52891::{d, e, a};`.
2726
2727         let (found_closing_brace, span) = find_span_of_binding_until_next_binding(
2728             self.session, binding_span, directive.use_span,
2729         );
2730
2731         // If there was a closing brace then identify the span to remove any trailing commas from
2732         // previous imports.
2733         if found_closing_brace {
2734             if let Some(span) = extend_span_to_previous_binding(self.session, span) {
2735                 err.tool_only_span_suggestion(span, message, String::new(),
2736                                               Applicability::MaybeIncorrect);
2737             } else {
2738                 // Remove the entire line if we cannot extend the span back, this indicates a
2739                 // `issue_52891::{self}` case.
2740                 err.span_suggestion(directive.use_span_with_attributes, message, String::new(),
2741                                     Applicability::MaybeIncorrect);
2742             }
2743
2744             return;
2745         }
2746
2747         err.span_suggestion(span, message, String::new(), Applicability::MachineApplicable);
2748     }
2749
2750     fn extern_prelude_get(&mut self, ident: Ident, speculative: bool)
2751                           -> Option<&'a NameBinding<'a>> {
2752         if ident.is_path_segment_keyword() {
2753             // Make sure `self`, `super` etc produce an error when passed to here.
2754             return None;
2755         }
2756         self.extern_prelude.get(&ident.modern()).cloned().and_then(|entry| {
2757             if let Some(binding) = entry.extern_crate_item {
2758                 if !speculative && entry.introduced_by_item {
2759                     self.record_use(ident, TypeNS, binding, false);
2760                 }
2761                 Some(binding)
2762             } else {
2763                 let crate_id = if !speculative {
2764                     self.crate_loader.process_path_extern(ident.name, ident.span)
2765                 } else if let Some(crate_id) =
2766                         self.crate_loader.maybe_process_path_extern(ident.name, ident.span) {
2767                     crate_id
2768                 } else {
2769                     return None;
2770                 };
2771                 let crate_root = self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX });
2772                 Some((crate_root, ty::Visibility::Public, DUMMY_SP, ExpnId::root())
2773                     .to_name_binding(self.arenas))
2774             }
2775         })
2776     }
2777
2778     /// Rustdoc uses this to resolve things in a recoverable way. `ResolutionError<'a>`
2779     /// isn't something that can be returned because it can't be made to live that long,
2780     /// and also it's a private type. Fortunately rustdoc doesn't need to know the error,
2781     /// just that an error occurred.
2782     // FIXME(Manishearth): intra-doc links won't get warned of epoch changes.
2783     pub fn resolve_str_path_error(
2784         &mut self, span: Span, path_str: &str, ns: Namespace, module_id: NodeId
2785     ) -> Result<(ast::Path, Res), ()> {
2786         let path = if path_str.starts_with("::") {
2787             ast::Path {
2788                 span,
2789                 segments: iter::once(Ident::with_dummy_span(kw::PathRoot))
2790                     .chain({
2791                         path_str.split("::").skip(1).map(Ident::from_str)
2792                     })
2793                     .map(|i| self.new_ast_path_segment(i))
2794                     .collect(),
2795             }
2796         } else {
2797             ast::Path {
2798                 span,
2799                 segments: path_str
2800                     .split("::")
2801                     .map(Ident::from_str)
2802                     .map(|i| self.new_ast_path_segment(i))
2803                     .collect(),
2804             }
2805         };
2806         let module = self.block_map.get(&module_id).copied().unwrap_or_else(|| {
2807             let def_id = self.definitions.local_def_id(module_id);
2808             self.module_map.get(&def_id).copied().unwrap_or(self.graph_root)
2809         });
2810         let parent_scope = &ParentScope::module(module);
2811         let res = self.resolve_ast_path(&path, ns, parent_scope).map_err(|_| ())?;
2812         Ok((path, res))
2813     }
2814
2815     // Resolve a path passed from rustdoc or HIR lowering.
2816     fn resolve_ast_path(
2817         &mut self,
2818         path: &ast::Path,
2819         ns: Namespace,
2820         parent_scope: &ParentScope<'a>,
2821     ) -> Result<Res, (Span, ResolutionError<'a>)> {
2822         match self.resolve_path(
2823             &Segment::from_path(path), Some(ns), parent_scope, true, path.span, CrateLint::No
2824         ) {
2825             PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
2826                 Ok(module.res().unwrap()),
2827             PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 =>
2828                 Ok(path_res.base_res()),
2829             PathResult::NonModule(..) => {
2830                 Err((path.span, ResolutionError::FailedToResolve {
2831                     label: String::from("type-relative paths are not supported in this context"),
2832                     suggestion: None,
2833                 }))
2834             }
2835             PathResult::Module(..) | PathResult::Indeterminate => unreachable!(),
2836             PathResult::Failed { span, label, suggestion, .. } => {
2837                 Err((span, ResolutionError::FailedToResolve {
2838                     label,
2839                     suggestion,
2840                 }))
2841             }
2842         }
2843     }
2844
2845     fn new_ast_path_segment(&mut self, ident: Ident) -> ast::PathSegment {
2846         let mut seg = ast::PathSegment::from_ident(ident);
2847         seg.id = self.next_node_id();
2848         seg
2849     }
2850
2851     // For rustdoc.
2852     pub fn graph_root(&self) -> Module<'a> {
2853         self.graph_root
2854     }
2855
2856     // For rustdoc.
2857     pub fn all_macros(&self) -> &FxHashMap<Name, Res> {
2858         &self.all_macros
2859     }
2860 }
2861
2862 fn names_to_string(names: &[Name]) -> String {
2863     let mut result = String::new();
2864     for (i, name) in names.iter()
2865                             .filter(|name| **name != kw::PathRoot)
2866                             .enumerate() {
2867         if i > 0 {
2868             result.push_str("::");
2869         }
2870         result.push_str(&name.as_str());
2871     }
2872     result
2873 }
2874
2875 fn path_names_to_string(path: &Path) -> String {
2876     names_to_string(&path.segments.iter()
2877                         .map(|seg| seg.ident.name)
2878                         .collect::<Vec<_>>())
2879 }
2880
2881 /// A somewhat inefficient routine to obtain the name of a module.
2882 fn module_to_string(module: Module<'_>) -> Option<String> {
2883     let mut names = Vec::new();
2884
2885     fn collect_mod(names: &mut Vec<Name>, module: Module<'_>) {
2886         if let ModuleKind::Def(.., name) = module.kind {
2887             if let Some(parent) = module.parent {
2888                 names.push(name);
2889                 collect_mod(names, parent);
2890             }
2891         } else {
2892             names.push(Name::intern("<opaque>"));
2893             collect_mod(names, module.parent.unwrap());
2894         }
2895     }
2896     collect_mod(&mut names, module);
2897
2898     if names.is_empty() {
2899         return None;
2900     }
2901     names.reverse();
2902     Some(names_to_string(&names))
2903 }
2904
2905 #[derive(Copy, Clone, Debug)]
2906 enum CrateLint {
2907     /// Do not issue the lint.
2908     No,
2909
2910     /// This lint applies to some arbitrary path; e.g., `impl ::foo::Bar`.
2911     /// In this case, we can take the span of that path.
2912     SimplePath(NodeId),
2913
2914     /// This lint comes from a `use` statement. In this case, what we
2915     /// care about really is the *root* `use` statement; e.g., if we
2916     /// have nested things like `use a::{b, c}`, we care about the
2917     /// `use a` part.
2918     UsePath { root_id: NodeId, root_span: Span },
2919
2920     /// This is the "trait item" from a fully qualified path. For example,
2921     /// we might be resolving  `X::Y::Z` from a path like `<T as X::Y>::Z`.
2922     /// The `path_span` is the span of the to the trait itself (`X::Y`).
2923     QPathTrait { qpath_id: NodeId, qpath_span: Span },
2924 }
2925
2926 impl CrateLint {
2927     fn node_id(&self) -> Option<NodeId> {
2928         match *self {
2929             CrateLint::No => None,
2930             CrateLint::SimplePath(id) |
2931             CrateLint::UsePath { root_id: id, .. } |
2932             CrateLint::QPathTrait { qpath_id: id, .. } => Some(id),
2933         }
2934     }
2935 }