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