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