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