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