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