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