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