]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/lib.rs
Use `DefId` in `ResolverOutputs::glob_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 definitions = self.definitions;
1277         let export_map = {
1278             let mut map = FxHashMap::default();
1279             for (k, v) in self.export_map.into_iter() {
1280                 map.insert(
1281                     k,
1282                     v.into_iter()
1283                         .map(|e| e.map_id(|id| definitions.node_id_to_hir_id(id)))
1284                         .collect(),
1285                 );
1286             }
1287             map
1288         };
1289         let trait_map = {
1290             let mut map = FxHashMap::default();
1291             for (k, v) in self.trait_map.into_iter() {
1292                 map.insert(
1293                     definitions.node_id_to_hir_id(k),
1294                     v.into_iter()
1295                         .map(|tc| tc.map_import_ids(|id| definitions.node_id_to_hir_id(id)))
1296                         .collect(),
1297                 );
1298             }
1299             map
1300         };
1301         let maybe_unused_trait_imports = self
1302             .maybe_unused_trait_imports
1303             .into_iter()
1304             .map(|id| definitions.local_def_id(id))
1305             .collect();
1306         let maybe_unused_extern_crates = self
1307             .maybe_unused_extern_crates
1308             .into_iter()
1309             .map(|(id, sp)| (definitions.local_def_id(id).to_def_id(), sp))
1310             .collect();
1311         let glob_map = self
1312             .glob_map
1313             .into_iter()
1314             .map(|(id, names)| (definitions.local_def_id(id), names))
1315             .collect();
1316         ResolverOutputs {
1317             definitions: definitions,
1318             cstore: Box::new(self.crate_loader.into_cstore()),
1319             extern_crate_map: self.extern_crate_map,
1320             export_map,
1321             trait_map,
1322             glob_map,
1323             maybe_unused_trait_imports,
1324             maybe_unused_extern_crates,
1325             extern_prelude: self
1326                 .extern_prelude
1327                 .iter()
1328                 .map(|(ident, entry)| (ident.name, entry.introduced_by_item))
1329                 .collect(),
1330         }
1331     }
1332
1333     pub fn clone_outputs(&self) -> ResolverOutputs {
1334         ResolverOutputs {
1335             definitions: self.definitions.clone(),
1336             cstore: Box::new(self.cstore().clone()),
1337             extern_crate_map: self.extern_crate_map.clone(),
1338             export_map: {
1339                 let mut map = FxHashMap::default();
1340                 for (k, v) in self.export_map.iter() {
1341                     map.insert(
1342                         k.clone(),
1343                         v.iter()
1344                             .map(|e| e.clone().map_id(|id| self.definitions.node_id_to_hir_id(id)))
1345                             .collect(),
1346                     );
1347                 }
1348                 map
1349             },
1350             trait_map: {
1351                 let mut map = FxHashMap::default();
1352                 for (k, v) in self.trait_map.iter() {
1353                     map.insert(
1354                         self.definitions.node_id_to_hir_id(k.clone()),
1355                         v.iter()
1356                             .map(|tc| {
1357                                 tc.clone()
1358                                     .map_import_ids(|id| self.definitions.node_id_to_hir_id(id))
1359                             })
1360                             .collect(),
1361                     );
1362                 }
1363                 map
1364             },
1365             glob_map: self
1366                 .glob_map
1367                 .iter()
1368                 .map(|(id, names)| (self.definitions.local_def_id(id.clone()), names.clone()))
1369                 .collect(),
1370             maybe_unused_trait_imports: self
1371                 .maybe_unused_trait_imports
1372                 .iter()
1373                 .map(|id| self.definitions.local_def_id(id.clone()))
1374                 .collect(),
1375             maybe_unused_extern_crates: self
1376                 .maybe_unused_extern_crates
1377                 .iter()
1378                 .map(|(id, sp)| (self.definitions.local_def_id(id.clone()).to_def_id(), sp.clone()))
1379                 .collect(),
1380             extern_prelude: self
1381                 .extern_prelude
1382                 .iter()
1383                 .map(|(ident, entry)| (ident.name, entry.introduced_by_item))
1384                 .collect(),
1385         }
1386     }
1387
1388     pub fn cstore(&self) -> &CStore {
1389         self.crate_loader.cstore()
1390     }
1391
1392     fn non_macro_attr(&self, mark_used: bool) -> Lrc<SyntaxExtension> {
1393         self.non_macro_attrs[mark_used as usize].clone()
1394     }
1395
1396     fn dummy_ext(&self, macro_kind: MacroKind) -> Lrc<SyntaxExtension> {
1397         match macro_kind {
1398             MacroKind::Bang => self.dummy_ext_bang.clone(),
1399             MacroKind::Derive => self.dummy_ext_derive.clone(),
1400             MacroKind::Attr => self.non_macro_attr(true),
1401         }
1402     }
1403
1404     /// Runs the function on each namespace.
1405     fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
1406         f(self, TypeNS);
1407         f(self, ValueNS);
1408         f(self, MacroNS);
1409     }
1410
1411     fn is_builtin_macro(&mut self, res: Res) -> bool {
1412         self.get_macro(res).map_or(false, |ext| ext.is_builtin)
1413     }
1414
1415     fn macro_def(&self, mut ctxt: SyntaxContext) -> DefId {
1416         loop {
1417             match self.macro_defs.get(&ctxt.outer_expn()) {
1418                 Some(&def_id) => return def_id,
1419                 None => ctxt.remove_mark(),
1420             };
1421         }
1422     }
1423
1424     /// Entry point to crate resolution.
1425     pub fn resolve_crate(&mut self, krate: &Crate) {
1426         let _prof_timer = self.session.prof.generic_activity("resolve_crate");
1427
1428         ImportResolver { r: self }.finalize_imports();
1429         self.finalize_macro_resolutions();
1430
1431         self.late_resolve_crate(krate);
1432
1433         self.check_unused(krate);
1434         self.report_errors(krate);
1435         self.crate_loader.postprocess(krate);
1436     }
1437
1438     fn new_module(
1439         &self,
1440         parent: Module<'a>,
1441         kind: ModuleKind,
1442         normal_ancestor_id: DefId,
1443         expn_id: ExpnId,
1444         span: Span,
1445     ) -> Module<'a> {
1446         let module = ModuleData::new(Some(parent), kind, normal_ancestor_id, expn_id, span);
1447         self.arenas.alloc_module(module)
1448     }
1449
1450     fn new_key(&mut self, ident: Ident, ns: Namespace) -> BindingKey {
1451         let ident = ident.normalize_to_macros_2_0();
1452         let disambiguator = if ident.name == kw::Underscore {
1453             self.underscore_disambiguator += 1;
1454             self.underscore_disambiguator
1455         } else {
1456             0
1457         };
1458         BindingKey { ident, ns, disambiguator }
1459     }
1460
1461     fn resolutions(&mut self, module: Module<'a>) -> &'a Resolutions<'a> {
1462         if module.populate_on_access.get() {
1463             module.populate_on_access.set(false);
1464             self.build_reduced_graph_external(module);
1465         }
1466         &module.lazy_resolutions
1467     }
1468
1469     fn resolution(
1470         &mut self,
1471         module: Module<'a>,
1472         key: BindingKey,
1473     ) -> &'a RefCell<NameResolution<'a>> {
1474         *self
1475             .resolutions(module)
1476             .borrow_mut()
1477             .entry(key)
1478             .or_insert_with(|| self.arenas.alloc_name_resolution())
1479     }
1480
1481     fn record_use(
1482         &mut self,
1483         ident: Ident,
1484         ns: Namespace,
1485         used_binding: &'a NameBinding<'a>,
1486         is_lexical_scope: bool,
1487     ) {
1488         if let Some((b2, kind)) = used_binding.ambiguity {
1489             self.ambiguity_errors.push(AmbiguityError {
1490                 kind,
1491                 ident,
1492                 b1: used_binding,
1493                 b2,
1494                 misc1: AmbiguityErrorMisc::None,
1495                 misc2: AmbiguityErrorMisc::None,
1496             });
1497         }
1498         if let NameBindingKind::Import { import, binding, ref used } = used_binding.kind {
1499             // Avoid marking `extern crate` items that refer to a name from extern prelude,
1500             // but not introduce it, as used if they are accessed from lexical scope.
1501             if is_lexical_scope {
1502                 if let Some(entry) = self.extern_prelude.get(&ident.normalize_to_macros_2_0()) {
1503                     if let Some(crate_item) = entry.extern_crate_item {
1504                         if ptr::eq(used_binding, crate_item) && !entry.introduced_by_item {
1505                             return;
1506                         }
1507                     }
1508                 }
1509             }
1510             used.set(true);
1511             import.used.set(true);
1512             self.used_imports.insert((import.id, ns));
1513             self.add_to_glob_map(&import, ident);
1514             self.record_use(ident, ns, binding, false);
1515         }
1516     }
1517
1518     #[inline]
1519     fn add_to_glob_map(&mut self, import: &Import<'_>, ident: Ident) {
1520         if import.is_glob() {
1521             self.glob_map.entry(import.id).or_default().insert(ident.name);
1522         }
1523     }
1524
1525     /// A generic scope visitor.
1526     /// Visits scopes in order to resolve some identifier in them or perform other actions.
1527     /// If the callback returns `Some` result, we stop visiting scopes and return it.
1528     fn visit_scopes<T>(
1529         &mut self,
1530         scope_set: ScopeSet,
1531         parent_scope: &ParentScope<'a>,
1532         ident: Ident,
1533         mut visitor: impl FnMut(&mut Self, Scope<'a>, /*use_prelude*/ bool, Ident) -> Option<T>,
1534     ) -> Option<T> {
1535         // General principles:
1536         // 1. Not controlled (user-defined) names should have higher priority than controlled names
1537         //    built into the language or standard library. This way we can add new names into the
1538         //    language or standard library without breaking user code.
1539         // 2. "Closed set" below means new names cannot appear after the current resolution attempt.
1540         // Places to search (in order of decreasing priority):
1541         // (Type NS)
1542         // 1. FIXME: Ribs (type parameters), there's no necessary infrastructure yet
1543         //    (open set, not controlled).
1544         // 2. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1545         //    (open, not controlled).
1546         // 3. Extern prelude (open, the open part is from macro expansions, not controlled).
1547         // 4. Tool modules (closed, controlled right now, but not in the future).
1548         // 5. Standard library prelude (de-facto closed, controlled).
1549         // 6. Language prelude (closed, controlled).
1550         // (Value NS)
1551         // 1. FIXME: Ribs (local variables), there's no necessary infrastructure yet
1552         //    (open set, not controlled).
1553         // 2. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1554         //    (open, not controlled).
1555         // 3. Standard library prelude (de-facto closed, controlled).
1556         // (Macro NS)
1557         // 1-3. Derive helpers (open, not controlled). All ambiguities with other names
1558         //    are currently reported as errors. They should be higher in priority than preludes
1559         //    and probably even names in modules according to the "general principles" above. They
1560         //    also should be subject to restricted shadowing because are effectively produced by
1561         //    derives (you need to resolve the derive first to add helpers into scope), but they
1562         //    should be available before the derive is expanded for compatibility.
1563         //    It's mess in general, so we are being conservative for now.
1564         // 1-3. `macro_rules` (open, not controlled), loop through `macro_rules` scopes. Have higher
1565         //    priority than prelude macros, but create ambiguities with macros in modules.
1566         // 1-3. Names in modules (both normal `mod`ules and blocks), loop through hygienic parents
1567         //    (open, not controlled). Have higher priority than prelude macros, but create
1568         //    ambiguities with `macro_rules`.
1569         // 4. `macro_use` prelude (open, the open part is from macro expansions, not controlled).
1570         // 4a. User-defined prelude from macro-use
1571         //    (open, the open part is from macro expansions, not controlled).
1572         // 4b. "Standard library prelude" part implemented through `macro-use` (closed, controlled).
1573         // 4c. Standard library prelude (de-facto closed, controlled).
1574         // 6. Language prelude: builtin attributes (closed, controlled).
1575
1576         let rust_2015 = ident.span.rust_2015();
1577         let (ns, macro_kind, is_absolute_path) = match scope_set {
1578             ScopeSet::All(ns, _) => (ns, None, false),
1579             ScopeSet::AbsolutePath(ns) => (ns, None, true),
1580             ScopeSet::Macro(macro_kind) => (MacroNS, Some(macro_kind), false),
1581         };
1582         // Jump out of trait or enum modules, they do not act as scopes.
1583         let module = parent_scope.module.nearest_item_scope();
1584         let mut scope = match ns {
1585             _ if is_absolute_path => Scope::CrateRoot,
1586             TypeNS | ValueNS => Scope::Module(module),
1587             MacroNS => Scope::DeriveHelpers(parent_scope.expansion),
1588         };
1589         let mut ident = ident.normalize_to_macros_2_0();
1590         let mut use_prelude = !module.no_implicit_prelude;
1591
1592         loop {
1593             let visit = match scope {
1594                 // Derive helpers are not in scope when resolving derives in the same container.
1595                 Scope::DeriveHelpers(expn_id) => {
1596                     !(expn_id == parent_scope.expansion && macro_kind == Some(MacroKind::Derive))
1597                 }
1598                 Scope::DeriveHelpersCompat => true,
1599                 Scope::MacroRules(..) => true,
1600                 Scope::CrateRoot => true,
1601                 Scope::Module(..) => true,
1602                 Scope::RegisteredAttrs => use_prelude,
1603                 Scope::MacroUsePrelude => use_prelude || rust_2015,
1604                 Scope::BuiltinAttrs => true,
1605                 Scope::ExternPrelude => use_prelude || is_absolute_path,
1606                 Scope::ToolPrelude => use_prelude,
1607                 Scope::StdLibPrelude => use_prelude || ns == MacroNS,
1608                 Scope::BuiltinTypes => true,
1609             };
1610
1611             if visit {
1612                 if let break_result @ Some(..) = visitor(self, scope, use_prelude, ident) {
1613                     return break_result;
1614                 }
1615             }
1616
1617             scope = match scope {
1618                 Scope::DeriveHelpers(expn_id) if expn_id != ExpnId::root() => {
1619                     // Derive helpers are not visible to code generated by bang or derive macros.
1620                     let expn_data = expn_id.expn_data();
1621                     match expn_data.kind {
1622                         ExpnKind::Root
1623                         | ExpnKind::Macro(MacroKind::Bang | MacroKind::Derive, _) => {
1624                             Scope::DeriveHelpersCompat
1625                         }
1626                         _ => Scope::DeriveHelpers(expn_data.parent),
1627                     }
1628                 }
1629                 Scope::DeriveHelpers(..) => Scope::DeriveHelpersCompat,
1630                 Scope::DeriveHelpersCompat => Scope::MacroRules(parent_scope.macro_rules),
1631                 Scope::MacroRules(macro_rules_scope) => match macro_rules_scope {
1632                     MacroRulesScope::Binding(binding) => {
1633                         Scope::MacroRules(binding.parent_macro_rules_scope)
1634                     }
1635                     MacroRulesScope::Invocation(invoc_id) => Scope::MacroRules(
1636                         self.output_macro_rules_scopes
1637                             .get(&invoc_id)
1638                             .cloned()
1639                             .unwrap_or(self.invocation_parent_scopes[&invoc_id].macro_rules),
1640                     ),
1641                     MacroRulesScope::Empty => Scope::Module(module),
1642                 },
1643                 Scope::CrateRoot => match ns {
1644                     TypeNS => {
1645                         ident.span.adjust(ExpnId::root());
1646                         Scope::ExternPrelude
1647                     }
1648                     ValueNS | MacroNS => break,
1649                 },
1650                 Scope::Module(module) => {
1651                     use_prelude = !module.no_implicit_prelude;
1652                     match self.hygienic_lexical_parent(module, &mut ident.span) {
1653                         Some(parent_module) => Scope::Module(parent_module),
1654                         None => {
1655                             ident.span.adjust(ExpnId::root());
1656                             match ns {
1657                                 TypeNS => Scope::ExternPrelude,
1658                                 ValueNS => Scope::StdLibPrelude,
1659                                 MacroNS => Scope::RegisteredAttrs,
1660                             }
1661                         }
1662                     }
1663                 }
1664                 Scope::RegisteredAttrs => Scope::MacroUsePrelude,
1665                 Scope::MacroUsePrelude => Scope::StdLibPrelude,
1666                 Scope::BuiltinAttrs => break, // nowhere else to search
1667                 Scope::ExternPrelude if is_absolute_path => break,
1668                 Scope::ExternPrelude => Scope::ToolPrelude,
1669                 Scope::ToolPrelude => Scope::StdLibPrelude,
1670                 Scope::StdLibPrelude => match ns {
1671                     TypeNS => Scope::BuiltinTypes,
1672                     ValueNS => break, // nowhere else to search
1673                     MacroNS => Scope::BuiltinAttrs,
1674                 },
1675                 Scope::BuiltinTypes => break, // nowhere else to search
1676             };
1677         }
1678
1679         None
1680     }
1681
1682     /// This resolves the identifier `ident` in the namespace `ns` in the current lexical scope.
1683     /// More specifically, we proceed up the hierarchy of scopes and return the binding for
1684     /// `ident` in the first scope that defines it (or None if no scopes define it).
1685     ///
1686     /// A block's items are above its local variables in the scope hierarchy, regardless of where
1687     /// the items are defined in the block. For example,
1688     /// ```rust
1689     /// fn f() {
1690     ///    g(); // Since there are no local variables in scope yet, this resolves to the item.
1691     ///    let g = || {};
1692     ///    fn g() {}
1693     ///    g(); // This resolves to the local variable `g` since it shadows the item.
1694     /// }
1695     /// ```
1696     ///
1697     /// Invariant: This must only be called during main resolution, not during
1698     /// import resolution.
1699     fn resolve_ident_in_lexical_scope(
1700         &mut self,
1701         mut ident: Ident,
1702         ns: Namespace,
1703         parent_scope: &ParentScope<'a>,
1704         record_used_id: Option<NodeId>,
1705         path_span: Span,
1706         ribs: &[Rib<'a>],
1707     ) -> Option<LexicalScopeBinding<'a>> {
1708         assert!(ns == TypeNS || ns == ValueNS);
1709         if ident.name == kw::Invalid {
1710             return Some(LexicalScopeBinding::Res(Res::Err));
1711         }
1712         let (general_span, normalized_span) = if ident.name == kw::SelfUpper {
1713             // FIXME(jseyfried) improve `Self` hygiene
1714             let empty_span = ident.span.with_ctxt(SyntaxContext::root());
1715             (empty_span, empty_span)
1716         } else if ns == TypeNS {
1717             let normalized_span = ident.span.normalize_to_macros_2_0();
1718             (normalized_span, normalized_span)
1719         } else {
1720             (ident.span.normalize_to_macro_rules(), ident.span.normalize_to_macros_2_0())
1721         };
1722         ident.span = general_span;
1723         let normalized_ident = Ident { span: normalized_span, ..ident };
1724
1725         // Walk backwards up the ribs in scope.
1726         let record_used = record_used_id.is_some();
1727         let mut module = self.graph_root;
1728         for i in (0..ribs.len()).rev() {
1729             debug!("walk rib\n{:?}", ribs[i].bindings);
1730             // Use the rib kind to determine whether we are resolving parameters
1731             // (macro 2.0 hygiene) or local variables (`macro_rules` hygiene).
1732             let rib_ident = if ribs[i].kind.contains_params() { normalized_ident } else { ident };
1733             if let Some(res) = ribs[i].bindings.get(&rib_ident).cloned() {
1734                 // The ident resolves to a type parameter or local variable.
1735                 return Some(LexicalScopeBinding::Res(self.validate_res_from_ribs(
1736                     i,
1737                     rib_ident,
1738                     res,
1739                     record_used,
1740                     path_span,
1741                     ribs,
1742                 )));
1743             }
1744
1745             module = match ribs[i].kind {
1746                 ModuleRibKind(module) => module,
1747                 MacroDefinition(def) if def == self.macro_def(ident.span.ctxt()) => {
1748                     // If an invocation of this macro created `ident`, give up on `ident`
1749                     // and switch to `ident`'s source from the macro definition.
1750                     ident.span.remove_mark();
1751                     continue;
1752                 }
1753                 _ => continue,
1754             };
1755
1756             let item = self.resolve_ident_in_module_unadjusted(
1757                 ModuleOrUniformRoot::Module(module),
1758                 ident,
1759                 ns,
1760                 parent_scope,
1761                 record_used,
1762                 path_span,
1763             );
1764             if let Ok(binding) = item {
1765                 // The ident resolves to an item.
1766                 return Some(LexicalScopeBinding::Item(binding));
1767             }
1768
1769             match module.kind {
1770                 ModuleKind::Block(..) => {} // We can see through blocks
1771                 _ => break,
1772             }
1773         }
1774
1775         ident = normalized_ident;
1776         let mut poisoned = None;
1777         loop {
1778             let opt_module = if let Some(node_id) = record_used_id {
1779                 self.hygienic_lexical_parent_with_compatibility_fallback(
1780                     module,
1781                     &mut ident.span,
1782                     node_id,
1783                     &mut poisoned,
1784                 )
1785             } else {
1786                 self.hygienic_lexical_parent(module, &mut ident.span)
1787             };
1788             module = unwrap_or!(opt_module, break);
1789             let adjusted_parent_scope = &ParentScope { module, ..*parent_scope };
1790             let result = self.resolve_ident_in_module_unadjusted(
1791                 ModuleOrUniformRoot::Module(module),
1792                 ident,
1793                 ns,
1794                 adjusted_parent_scope,
1795                 record_used,
1796                 path_span,
1797             );
1798
1799             match result {
1800                 Ok(binding) => {
1801                     if let Some(node_id) = poisoned {
1802                         self.lint_buffer.buffer_lint_with_diagnostic(
1803                             lint::builtin::PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
1804                             node_id,
1805                             ident.span,
1806                             &format!("cannot find {} `{}` in this scope", ns.descr(), ident),
1807                             BuiltinLintDiagnostics::ProcMacroDeriveResolutionFallback(ident.span),
1808                         );
1809                     }
1810                     return Some(LexicalScopeBinding::Item(binding));
1811                 }
1812                 Err(Determined) => continue,
1813                 Err(Undetermined) => {
1814                     span_bug!(ident.span, "undetermined resolution during main resolution pass")
1815                 }
1816             }
1817         }
1818
1819         if !module.no_implicit_prelude {
1820             ident.span.adjust(ExpnId::root());
1821             if ns == TypeNS {
1822                 if let Some(binding) = self.extern_prelude_get(ident, !record_used) {
1823                     return Some(LexicalScopeBinding::Item(binding));
1824                 }
1825                 if let Some(ident) = self.registered_tools.get(&ident) {
1826                     let binding =
1827                         (Res::ToolMod, ty::Visibility::Public, ident.span, ExpnId::root())
1828                             .to_name_binding(self.arenas);
1829                     return Some(LexicalScopeBinding::Item(binding));
1830                 }
1831             }
1832             if let Some(prelude) = self.prelude {
1833                 if let Ok(binding) = self.resolve_ident_in_module_unadjusted(
1834                     ModuleOrUniformRoot::Module(prelude),
1835                     ident,
1836                     ns,
1837                     parent_scope,
1838                     false,
1839                     path_span,
1840                 ) {
1841                     return Some(LexicalScopeBinding::Item(binding));
1842                 }
1843             }
1844         }
1845
1846         if ns == TypeNS {
1847             if let Some(prim_ty) = self.primitive_type_table.primitive_types.get(&ident.name) {
1848                 let binding =
1849                     (Res::PrimTy(*prim_ty), ty::Visibility::Public, DUMMY_SP, ExpnId::root())
1850                         .to_name_binding(self.arenas);
1851                 return Some(LexicalScopeBinding::Item(binding));
1852             }
1853         }
1854
1855         None
1856     }
1857
1858     fn hygienic_lexical_parent(
1859         &mut self,
1860         module: Module<'a>,
1861         span: &mut Span,
1862     ) -> Option<Module<'a>> {
1863         if !module.expansion.outer_expn_is_descendant_of(span.ctxt()) {
1864             return Some(self.macro_def_scope(span.remove_mark()));
1865         }
1866
1867         if let ModuleKind::Block(..) = module.kind {
1868             return Some(module.parent.unwrap().nearest_item_scope());
1869         }
1870
1871         None
1872     }
1873
1874     fn hygienic_lexical_parent_with_compatibility_fallback(
1875         &mut self,
1876         module: Module<'a>,
1877         span: &mut Span,
1878         node_id: NodeId,
1879         poisoned: &mut Option<NodeId>,
1880     ) -> Option<Module<'a>> {
1881         if let module @ Some(..) = self.hygienic_lexical_parent(module, span) {
1882             return module;
1883         }
1884
1885         // We need to support the next case under a deprecation warning
1886         // ```
1887         // struct MyStruct;
1888         // ---- begin: this comes from a proc macro derive
1889         // mod implementation_details {
1890         //     // Note that `MyStruct` is not in scope here.
1891         //     impl SomeTrait for MyStruct { ... }
1892         // }
1893         // ---- end
1894         // ```
1895         // So we have to fall back to the module's parent during lexical resolution in this case.
1896         if let Some(parent) = module.parent {
1897             // Inner module is inside the macro, parent module is outside of the macro.
1898             if module.expansion != parent.expansion
1899                 && module.expansion.is_descendant_of(parent.expansion)
1900             {
1901                 // The macro is a proc macro derive
1902                 if let Some(&def_id) = self.macro_defs.get(&module.expansion) {
1903                     if let Some(ext) = self.get_macro_by_def_id(def_id) {
1904                         if !ext.is_builtin && ext.macro_kind() == MacroKind::Derive {
1905                             if parent.expansion.outer_expn_is_descendant_of(span.ctxt()) {
1906                                 *poisoned = Some(node_id);
1907                                 return module.parent;
1908                             }
1909                         }
1910                     }
1911                 }
1912             }
1913         }
1914
1915         None
1916     }
1917
1918     fn resolve_ident_in_module(
1919         &mut self,
1920         module: ModuleOrUniformRoot<'a>,
1921         ident: Ident,
1922         ns: Namespace,
1923         parent_scope: &ParentScope<'a>,
1924         record_used: bool,
1925         path_span: Span,
1926     ) -> Result<&'a NameBinding<'a>, Determinacy> {
1927         self.resolve_ident_in_module_ext(module, ident, ns, parent_scope, record_used, path_span)
1928             .map_err(|(determinacy, _)| determinacy)
1929     }
1930
1931     fn resolve_ident_in_module_ext(
1932         &mut self,
1933         module: ModuleOrUniformRoot<'a>,
1934         mut ident: Ident,
1935         ns: Namespace,
1936         parent_scope: &ParentScope<'a>,
1937         record_used: bool,
1938         path_span: Span,
1939     ) -> Result<&'a NameBinding<'a>, (Determinacy, Weak)> {
1940         let tmp_parent_scope;
1941         let mut adjusted_parent_scope = parent_scope;
1942         match module {
1943             ModuleOrUniformRoot::Module(m) => {
1944                 if let Some(def) = ident.span.normalize_to_macros_2_0_and_adjust(m.expansion) {
1945                     tmp_parent_scope =
1946                         ParentScope { module: self.macro_def_scope(def), ..*parent_scope };
1947                     adjusted_parent_scope = &tmp_parent_scope;
1948                 }
1949             }
1950             ModuleOrUniformRoot::ExternPrelude => {
1951                 ident.span.normalize_to_macros_2_0_and_adjust(ExpnId::root());
1952             }
1953             ModuleOrUniformRoot::CrateRootAndExternPrelude | ModuleOrUniformRoot::CurrentScope => {
1954                 // No adjustments
1955             }
1956         }
1957         self.resolve_ident_in_module_unadjusted_ext(
1958             module,
1959             ident,
1960             ns,
1961             adjusted_parent_scope,
1962             false,
1963             record_used,
1964             path_span,
1965         )
1966     }
1967
1968     fn resolve_crate_root(&mut self, ident: Ident) -> Module<'a> {
1969         let mut ctxt = ident.span.ctxt();
1970         let mark = if ident.name == kw::DollarCrate {
1971             // When resolving `$crate` from a `macro_rules!` invoked in a `macro`,
1972             // we don't want to pretend that the `macro_rules!` definition is in the `macro`
1973             // as described in `SyntaxContext::apply_mark`, so we ignore prepended opaque marks.
1974             // FIXME: This is only a guess and it doesn't work correctly for `macro_rules!`
1975             // definitions actually produced by `macro` and `macro` definitions produced by
1976             // `macro_rules!`, but at least such configurations are not stable yet.
1977             ctxt = ctxt.normalize_to_macro_rules();
1978             let mut iter = ctxt.marks().into_iter().rev().peekable();
1979             let mut result = None;
1980             // Find the last opaque mark from the end if it exists.
1981             while let Some(&(mark, transparency)) = iter.peek() {
1982                 if transparency == Transparency::Opaque {
1983                     result = Some(mark);
1984                     iter.next();
1985                 } else {
1986                     break;
1987                 }
1988             }
1989             // Then find the last semi-transparent mark from the end if it exists.
1990             for (mark, transparency) in iter {
1991                 if transparency == Transparency::SemiTransparent {
1992                     result = Some(mark);
1993                 } else {
1994                     break;
1995                 }
1996             }
1997             result
1998         } else {
1999             ctxt = ctxt.normalize_to_macros_2_0();
2000             ctxt.adjust(ExpnId::root())
2001         };
2002         let module = match mark {
2003             Some(def) => self.macro_def_scope(def),
2004             None => return self.graph_root,
2005         };
2006         self.get_module(DefId { index: CRATE_DEF_INDEX, ..module.normal_ancestor_id })
2007     }
2008
2009     fn resolve_self(&mut self, ctxt: &mut SyntaxContext, module: Module<'a>) -> Module<'a> {
2010         let mut module = self.get_module(module.normal_ancestor_id);
2011         while module.span.ctxt().normalize_to_macros_2_0() != *ctxt {
2012             let parent = module.parent.unwrap_or_else(|| self.macro_def_scope(ctxt.remove_mark()));
2013             module = self.get_module(parent.normal_ancestor_id);
2014         }
2015         module
2016     }
2017
2018     fn resolve_path(
2019         &mut self,
2020         path: &[Segment],
2021         opt_ns: Option<Namespace>, // `None` indicates a module path in import
2022         parent_scope: &ParentScope<'a>,
2023         record_used: bool,
2024         path_span: Span,
2025         crate_lint: CrateLint,
2026     ) -> PathResult<'a> {
2027         self.resolve_path_with_ribs(
2028             path,
2029             opt_ns,
2030             parent_scope,
2031             record_used,
2032             path_span,
2033             crate_lint,
2034             None,
2035         )
2036     }
2037
2038     fn resolve_path_with_ribs(
2039         &mut self,
2040         path: &[Segment],
2041         opt_ns: Option<Namespace>, // `None` indicates a module path in import
2042         parent_scope: &ParentScope<'a>,
2043         record_used: bool,
2044         path_span: Span,
2045         crate_lint: CrateLint,
2046         ribs: Option<&PerNS<Vec<Rib<'a>>>>,
2047     ) -> PathResult<'a> {
2048         let mut module = None;
2049         let mut allow_super = true;
2050         let mut second_binding = None;
2051
2052         debug!(
2053             "resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
2054              path_span={:?}, crate_lint={:?})",
2055             path, opt_ns, record_used, path_span, crate_lint,
2056         );
2057
2058         for (i, &Segment { ident, id }) in path.iter().enumerate() {
2059             debug!("resolve_path ident {} {:?} {:?}", i, ident, id);
2060             let record_segment_res = |this: &mut Self, res| {
2061                 if record_used {
2062                     if let Some(id) = id {
2063                         if !this.partial_res_map.contains_key(&id) {
2064                             assert!(id != ast::DUMMY_NODE_ID, "Trying to resolve dummy id");
2065                             this.record_partial_res(id, PartialRes::new(res));
2066                         }
2067                     }
2068                 }
2069             };
2070
2071             let is_last = i == path.len() - 1;
2072             let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
2073             let name = ident.name;
2074
2075             allow_super &= ns == TypeNS && (name == kw::SelfLower || name == kw::Super);
2076
2077             if ns == TypeNS {
2078                 if allow_super && name == kw::Super {
2079                     let mut ctxt = ident.span.ctxt().normalize_to_macros_2_0();
2080                     let self_module = match i {
2081                         0 => Some(self.resolve_self(&mut ctxt, parent_scope.module)),
2082                         _ => match module {
2083                             Some(ModuleOrUniformRoot::Module(module)) => Some(module),
2084                             _ => None,
2085                         },
2086                     };
2087                     if let Some(self_module) = self_module {
2088                         if let Some(parent) = self_module.parent {
2089                             module = Some(ModuleOrUniformRoot::Module(
2090                                 self.resolve_self(&mut ctxt, parent),
2091                             ));
2092                             continue;
2093                         }
2094                     }
2095                     let msg = "there are too many leading `super` keywords".to_string();
2096                     return PathResult::Failed {
2097                         span: ident.span,
2098                         label: msg,
2099                         suggestion: None,
2100                         is_error_from_last_segment: false,
2101                     };
2102                 }
2103                 if i == 0 {
2104                     if name == kw::SelfLower {
2105                         let mut ctxt = ident.span.ctxt().normalize_to_macros_2_0();
2106                         module = Some(ModuleOrUniformRoot::Module(
2107                             self.resolve_self(&mut ctxt, parent_scope.module),
2108                         ));
2109                         continue;
2110                     }
2111                     if name == kw::PathRoot && ident.span.rust_2018() {
2112                         module = Some(ModuleOrUniformRoot::ExternPrelude);
2113                         continue;
2114                     }
2115                     if name == kw::PathRoot && ident.span.rust_2015() && self.session.rust_2018() {
2116                         // `::a::b` from 2015 macro on 2018 global edition
2117                         module = Some(ModuleOrUniformRoot::CrateRootAndExternPrelude);
2118                         continue;
2119                     }
2120                     if name == kw::PathRoot || name == kw::Crate || name == kw::DollarCrate {
2121                         // `::a::b`, `crate::a::b` or `$crate::a::b`
2122                         module = Some(ModuleOrUniformRoot::Module(self.resolve_crate_root(ident)));
2123                         continue;
2124                     }
2125                 }
2126             }
2127
2128             // Report special messages for path segment keywords in wrong positions.
2129             if ident.is_path_segment_keyword() && i != 0 {
2130                 let name_str = if name == kw::PathRoot {
2131                     "crate root".to_string()
2132                 } else {
2133                     format!("`{}`", name)
2134                 };
2135                 let label = if i == 1 && path[0].ident.name == kw::PathRoot {
2136                     format!("global paths cannot start with {}", name_str)
2137                 } else {
2138                     format!("{} in paths can only be used in start position", name_str)
2139                 };
2140                 return PathResult::Failed {
2141                     span: ident.span,
2142                     label,
2143                     suggestion: None,
2144                     is_error_from_last_segment: false,
2145                 };
2146             }
2147
2148             enum FindBindingResult<'a> {
2149                 Binding(Result<&'a NameBinding<'a>, Determinacy>),
2150                 PathResult(PathResult<'a>),
2151             }
2152             let find_binding_in_ns = |this: &mut Self, ns| {
2153                 let binding = if let Some(module) = module {
2154                     this.resolve_ident_in_module(
2155                         module,
2156                         ident,
2157                         ns,
2158                         parent_scope,
2159                         record_used,
2160                         path_span,
2161                     )
2162                 } else if ribs.is_none() || opt_ns.is_none() || opt_ns == Some(MacroNS) {
2163                     let scopes = ScopeSet::All(ns, opt_ns.is_none());
2164                     this.early_resolve_ident_in_lexical_scope(
2165                         ident,
2166                         scopes,
2167                         parent_scope,
2168                         record_used,
2169                         record_used,
2170                         path_span,
2171                     )
2172                 } else {
2173                     let record_used_id = if record_used {
2174                         crate_lint.node_id().or(Some(CRATE_NODE_ID))
2175                     } else {
2176                         None
2177                     };
2178                     match this.resolve_ident_in_lexical_scope(
2179                         ident,
2180                         ns,
2181                         parent_scope,
2182                         record_used_id,
2183                         path_span,
2184                         &ribs.unwrap()[ns],
2185                     ) {
2186                         // we found a locally-imported or available item/module
2187                         Some(LexicalScopeBinding::Item(binding)) => Ok(binding),
2188                         // we found a local variable or type param
2189                         Some(LexicalScopeBinding::Res(res))
2190                             if opt_ns == Some(TypeNS) || opt_ns == Some(ValueNS) =>
2191                         {
2192                             record_segment_res(this, res);
2193                             return FindBindingResult::PathResult(PathResult::NonModule(
2194                                 PartialRes::with_unresolved_segments(res, path.len() - 1),
2195                             ));
2196                         }
2197                         _ => Err(Determinacy::determined(record_used)),
2198                     }
2199                 };
2200                 FindBindingResult::Binding(binding)
2201             };
2202             let binding = match find_binding_in_ns(self, ns) {
2203                 FindBindingResult::PathResult(x) => return x,
2204                 FindBindingResult::Binding(binding) => binding,
2205             };
2206             match binding {
2207                 Ok(binding) => {
2208                     if i == 1 {
2209                         second_binding = Some(binding);
2210                     }
2211                     let res = binding.res();
2212                     let maybe_assoc = opt_ns != Some(MacroNS) && PathSource::Type.is_expected(res);
2213                     if let Some(next_module) = binding.module() {
2214                         module = Some(ModuleOrUniformRoot::Module(next_module));
2215                         record_segment_res(self, res);
2216                     } else if res == Res::ToolMod && i + 1 != path.len() {
2217                         if binding.is_import() {
2218                             self.session
2219                                 .struct_span_err(
2220                                     ident.span,
2221                                     "cannot use a tool module through an import",
2222                                 )
2223                                 .span_note(binding.span, "the tool module imported here")
2224                                 .emit();
2225                         }
2226                         let res = Res::NonMacroAttr(NonMacroAttrKind::Tool);
2227                         return PathResult::NonModule(PartialRes::new(res));
2228                     } else if res == Res::Err {
2229                         return PathResult::NonModule(PartialRes::new(Res::Err));
2230                     } else if opt_ns.is_some() && (is_last || maybe_assoc) {
2231                         self.lint_if_path_starts_with_module(
2232                             crate_lint,
2233                             path,
2234                             path_span,
2235                             second_binding,
2236                         );
2237                         return PathResult::NonModule(PartialRes::with_unresolved_segments(
2238                             res,
2239                             path.len() - i - 1,
2240                         ));
2241                     } else {
2242                         let label = format!(
2243                             "`{}` is {} {}, not a module",
2244                             ident,
2245                             res.article(),
2246                             res.descr(),
2247                         );
2248
2249                         return PathResult::Failed {
2250                             span: ident.span,
2251                             label,
2252                             suggestion: None,
2253                             is_error_from_last_segment: is_last,
2254                         };
2255                     }
2256                 }
2257                 Err(Undetermined) => return PathResult::Indeterminate,
2258                 Err(Determined) => {
2259                     if let Some(ModuleOrUniformRoot::Module(module)) = module {
2260                         if opt_ns.is_some() && !module.is_normal() {
2261                             return PathResult::NonModule(PartialRes::with_unresolved_segments(
2262                                 module.res().unwrap(),
2263                                 path.len() - i,
2264                             ));
2265                         }
2266                     }
2267                     let module_res = match module {
2268                         Some(ModuleOrUniformRoot::Module(module)) => module.res(),
2269                         _ => None,
2270                     };
2271                     let (label, suggestion) = if module_res == self.graph_root.res() {
2272                         let is_mod = |res| match res {
2273                             Res::Def(DefKind::Mod, _) => true,
2274                             _ => false,
2275                         };
2276                         let mut candidates = self.lookup_import_candidates(ident, TypeNS, is_mod);
2277                         candidates.sort_by_cached_key(|c| {
2278                             (c.path.segments.len(), pprust::path_to_string(&c.path))
2279                         });
2280                         if let Some(candidate) = candidates.get(0) {
2281                             (
2282                                 String::from("unresolved import"),
2283                                 Some((
2284                                     vec![(ident.span, pprust::path_to_string(&candidate.path))],
2285                                     String::from("a similar path exists"),
2286                                     Applicability::MaybeIncorrect,
2287                                 )),
2288                             )
2289                         } else {
2290                             (format!("maybe a missing crate `{}`?", ident), None)
2291                         }
2292                     } else if i == 0 {
2293                         (format!("use of undeclared type or module `{}`", ident), None)
2294                     } else {
2295                         let mut msg =
2296                             format!("could not find `{}` in `{}`", ident, path[i - 1].ident);
2297                         if ns == TypeNS || ns == ValueNS {
2298                             let ns_to_try = if ns == TypeNS { ValueNS } else { TypeNS };
2299                             if let FindBindingResult::Binding(Ok(binding)) =
2300                                 find_binding_in_ns(self, ns_to_try)
2301                             {
2302                                 let mut found = |what| {
2303                                     msg = format!(
2304                                         "expected {}, found {} `{}` in `{}`",
2305                                         ns.descr(),
2306                                         what,
2307                                         ident,
2308                                         path[i - 1].ident
2309                                     )
2310                                 };
2311                                 if binding.module().is_some() {
2312                                     found("module")
2313                                 } else {
2314                                     match binding.res() {
2315                                         def::Res::<NodeId>::Def(kind, id) => found(kind.descr(id)),
2316                                         _ => found(ns_to_try.descr()),
2317                                     }
2318                                 }
2319                             };
2320                         }
2321                         (msg, None)
2322                     };
2323                     return PathResult::Failed {
2324                         span: ident.span,
2325                         label,
2326                         suggestion,
2327                         is_error_from_last_segment: is_last,
2328                     };
2329                 }
2330             }
2331         }
2332
2333         self.lint_if_path_starts_with_module(crate_lint, path, path_span, second_binding);
2334
2335         PathResult::Module(match module {
2336             Some(module) => module,
2337             None if path.is_empty() => ModuleOrUniformRoot::CurrentScope,
2338             _ => span_bug!(path_span, "resolve_path: non-empty path `{:?}` has no module", path),
2339         })
2340     }
2341
2342     fn lint_if_path_starts_with_module(
2343         &mut self,
2344         crate_lint: CrateLint,
2345         path: &[Segment],
2346         path_span: Span,
2347         second_binding: Option<&NameBinding<'_>>,
2348     ) {
2349         let (diag_id, diag_span) = match crate_lint {
2350             CrateLint::No => return,
2351             CrateLint::SimplePath(id) => (id, path_span),
2352             CrateLint::UsePath { root_id, root_span } => (root_id, root_span),
2353             CrateLint::QPathTrait { qpath_id, qpath_span } => (qpath_id, qpath_span),
2354         };
2355
2356         let first_name = match path.get(0) {
2357             // In the 2018 edition this lint is a hard error, so nothing to do
2358             Some(seg) if seg.ident.span.rust_2015() && self.session.rust_2015() => seg.ident.name,
2359             _ => return,
2360         };
2361
2362         // We're only interested in `use` paths which should start with
2363         // `{{root}}` currently.
2364         if first_name != kw::PathRoot {
2365             return;
2366         }
2367
2368         match path.get(1) {
2369             // If this import looks like `crate::...` it's already good
2370             Some(Segment { ident, .. }) if ident.name == kw::Crate => return,
2371             // Otherwise go below to see if it's an extern crate
2372             Some(_) => {}
2373             // If the path has length one (and it's `PathRoot` most likely)
2374             // then we don't know whether we're gonna be importing a crate or an
2375             // item in our crate. Defer this lint to elsewhere
2376             None => return,
2377         }
2378
2379         // If the first element of our path was actually resolved to an
2380         // `ExternCrate` (also used for `crate::...`) then no need to issue a
2381         // warning, this looks all good!
2382         if let Some(binding) = second_binding {
2383             if let NameBindingKind::Import { import, .. } = binding.kind {
2384                 // Careful: we still want to rewrite paths from renamed extern crates.
2385                 if let ImportKind::ExternCrate { source: None, .. } = import.kind {
2386                     return;
2387                 }
2388             }
2389         }
2390
2391         let diag = BuiltinLintDiagnostics::AbsPathWithModule(diag_span);
2392         self.lint_buffer.buffer_lint_with_diagnostic(
2393             lint::builtin::ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
2394             diag_id,
2395             diag_span,
2396             "absolute paths must start with `self`, `super`, \
2397              `crate`, or an external crate name in the 2018 edition",
2398             diag,
2399         );
2400     }
2401
2402     // Validate a local resolution (from ribs).
2403     fn validate_res_from_ribs(
2404         &mut self,
2405         rib_index: usize,
2406         rib_ident: Ident,
2407         res: Res,
2408         record_used: bool,
2409         span: Span,
2410         all_ribs: &[Rib<'a>],
2411     ) -> Res {
2412         debug!("validate_res_from_ribs({:?})", res);
2413         let ribs = &all_ribs[rib_index + 1..];
2414
2415         // An invalid forward use of a type parameter from a previous default.
2416         if let ForwardTyParamBanRibKind = all_ribs[rib_index].kind {
2417             if record_used {
2418                 let res_error = if rib_ident.name == kw::SelfUpper {
2419                     ResolutionError::SelfInTyParamDefault
2420                 } else {
2421                     ResolutionError::ForwardDeclaredTyParam
2422                 };
2423                 self.report_error(span, res_error);
2424             }
2425             assert_eq!(res, Res::Err);
2426             return Res::Err;
2427         }
2428
2429         match res {
2430             Res::Local(_) => {
2431                 use ResolutionError::*;
2432                 let mut res_err = None;
2433
2434                 for rib in ribs {
2435                     match rib.kind {
2436                         NormalRibKind
2437                         | ModuleRibKind(..)
2438                         | MacroDefinition(..)
2439                         | ForwardTyParamBanRibKind => {
2440                             // Nothing to do. Continue.
2441                         }
2442                         ItemRibKind(_) | FnItemRibKind | AssocItemRibKind => {
2443                             // This was an attempt to access an upvar inside a
2444                             // named function item. This is not allowed, so we
2445                             // report an error.
2446                             if record_used {
2447                                 // We don't immediately trigger a resolve error, because
2448                                 // we want certain other resolution errors (namely those
2449                                 // emitted for `ConstantItemRibKind` below) to take
2450                                 // precedence.
2451                                 res_err = Some(CannotCaptureDynamicEnvironmentInFnItem);
2452                             }
2453                         }
2454                         ConstantItemRibKind => {
2455                             // Still doesn't deal with upvars
2456                             if record_used {
2457                                 self.report_error(span, AttemptToUseNonConstantValueInConstant);
2458                             }
2459                             return Res::Err;
2460                         }
2461                     }
2462                 }
2463                 if let Some(res_err) = res_err {
2464                     self.report_error(span, res_err);
2465                     return Res::Err;
2466                 }
2467             }
2468             Res::Def(DefKind::TyParam, _) | Res::SelfTy(..) => {
2469                 for rib in ribs {
2470                     let has_generic_params = match rib.kind {
2471                         NormalRibKind
2472                         | AssocItemRibKind
2473                         | ModuleRibKind(..)
2474                         | MacroDefinition(..)
2475                         | ForwardTyParamBanRibKind
2476                         | ConstantItemRibKind => {
2477                             // Nothing to do. Continue.
2478                             continue;
2479                         }
2480                         // This was an attempt to use a type parameter outside its scope.
2481                         ItemRibKind(has_generic_params) => has_generic_params,
2482                         FnItemRibKind => HasGenericParams::Yes,
2483                     };
2484
2485                     if record_used {
2486                         self.report_error(
2487                             span,
2488                             ResolutionError::GenericParamsFromOuterFunction(
2489                                 res,
2490                                 has_generic_params,
2491                             ),
2492                         );
2493                     }
2494                     return Res::Err;
2495                 }
2496             }
2497             Res::Def(DefKind::ConstParam, _) => {
2498                 let mut ribs = ribs.iter().peekable();
2499                 if let Some(Rib { kind: FnItemRibKind, .. }) = ribs.peek() {
2500                     // When declaring const parameters inside function signatures, the first rib
2501                     // is always a `FnItemRibKind`. In this case, we can skip it, to avoid it
2502                     // (spuriously) conflicting with the const param.
2503                     ribs.next();
2504                 }
2505                 for rib in ribs {
2506                     let has_generic_params = match rib.kind {
2507                         ItemRibKind(has_generic_params) => has_generic_params,
2508                         FnItemRibKind => HasGenericParams::Yes,
2509                         _ => continue,
2510                     };
2511
2512                     // This was an attempt to use a const parameter outside its scope.
2513                     if record_used {
2514                         self.report_error(
2515                             span,
2516                             ResolutionError::GenericParamsFromOuterFunction(
2517                                 res,
2518                                 has_generic_params,
2519                             ),
2520                         );
2521                     }
2522                     return Res::Err;
2523                 }
2524             }
2525             _ => {}
2526         }
2527         res
2528     }
2529
2530     fn record_partial_res(&mut self, node_id: NodeId, resolution: PartialRes) {
2531         debug!("(recording res) recording {:?} for {}", resolution, node_id);
2532         if let Some(prev_res) = self.partial_res_map.insert(node_id, resolution) {
2533             panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
2534         }
2535     }
2536
2537     fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
2538         vis.is_accessible_from(module.normal_ancestor_id, self)
2539     }
2540
2541     fn set_binding_parent_module(&mut self, binding: &'a NameBinding<'a>, module: Module<'a>) {
2542         if let Some(old_module) = self.binding_parent_modules.insert(PtrKey(binding), module) {
2543             if !ptr::eq(module, old_module) {
2544                 span_bug!(binding.span, "parent module is reset for binding");
2545             }
2546         }
2547     }
2548
2549     fn disambiguate_macro_rules_vs_modularized(
2550         &self,
2551         macro_rules: &'a NameBinding<'a>,
2552         modularized: &'a NameBinding<'a>,
2553     ) -> bool {
2554         // Some non-controversial subset of ambiguities "modularized macro name" vs "macro_rules"
2555         // is disambiguated to mitigate regressions from macro modularization.
2556         // Scoping for `macro_rules` behaves like scoping for `let` at module level, in general.
2557         match (
2558             self.binding_parent_modules.get(&PtrKey(macro_rules)),
2559             self.binding_parent_modules.get(&PtrKey(modularized)),
2560         ) {
2561             (Some(macro_rules), Some(modularized)) => {
2562                 macro_rules.normal_ancestor_id == modularized.normal_ancestor_id
2563                     && modularized.is_ancestor_of(macro_rules)
2564             }
2565             _ => false,
2566         }
2567     }
2568
2569     fn report_errors(&mut self, krate: &Crate) {
2570         self.report_with_use_injections(krate);
2571
2572         for &(span_use, span_def) in &self.macro_expanded_macro_export_errors {
2573             let msg = "macro-expanded `macro_export` macros from the current crate \
2574                        cannot be referred to by absolute paths";
2575             self.lint_buffer.buffer_lint_with_diagnostic(
2576                 lint::builtin::MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
2577                 CRATE_NODE_ID,
2578                 span_use,
2579                 msg,
2580                 BuiltinLintDiagnostics::MacroExpandedMacroExportsAccessedByAbsolutePaths(span_def),
2581             );
2582         }
2583
2584         for ambiguity_error in &self.ambiguity_errors {
2585             self.report_ambiguity_error(ambiguity_error);
2586         }
2587
2588         let mut reported_spans = FxHashSet::default();
2589         for error in &self.privacy_errors {
2590             if reported_spans.insert(error.dedup_span) {
2591                 self.report_privacy_error(error);
2592             }
2593         }
2594     }
2595
2596     fn report_with_use_injections(&mut self, krate: &Crate) {
2597         for UseError { mut err, candidates, node_id, better, suggestion } in
2598             self.use_injections.drain(..)
2599         {
2600             let (span, found_use) = UsePlacementFinder::check(krate, node_id);
2601             if !candidates.is_empty() {
2602                 diagnostics::show_candidates(&mut err, span, &candidates, better, found_use);
2603             } else if let Some((span, msg, sugg, appl)) = suggestion {
2604                 err.span_suggestion(span, msg, sugg, appl);
2605             }
2606             err.emit();
2607         }
2608     }
2609
2610     fn report_conflict<'b>(
2611         &mut self,
2612         parent: Module<'_>,
2613         ident: Ident,
2614         ns: Namespace,
2615         new_binding: &NameBinding<'b>,
2616         old_binding: &NameBinding<'b>,
2617     ) {
2618         // Error on the second of two conflicting names
2619         if old_binding.span.lo() > new_binding.span.lo() {
2620             return self.report_conflict(parent, ident, ns, old_binding, new_binding);
2621         }
2622
2623         let container = match parent.kind {
2624             ModuleKind::Def(kind, _, _) => kind.descr(parent.def_id().unwrap()),
2625             ModuleKind::Block(..) => "block",
2626         };
2627
2628         let old_noun = match old_binding.is_import() {
2629             true => "import",
2630             false => "definition",
2631         };
2632
2633         let new_participle = match new_binding.is_import() {
2634             true => "imported",
2635             false => "defined",
2636         };
2637
2638         let (name, span) =
2639             (ident.name, self.session.source_map().guess_head_span(new_binding.span));
2640
2641         if let Some(s) = self.name_already_seen.get(&name) {
2642             if s == &span {
2643                 return;
2644             }
2645         }
2646
2647         let old_kind = match (ns, old_binding.module()) {
2648             (ValueNS, _) => "value",
2649             (MacroNS, _) => "macro",
2650             (TypeNS, _) if old_binding.is_extern_crate() => "extern crate",
2651             (TypeNS, Some(module)) if module.is_normal() => "module",
2652             (TypeNS, Some(module)) if module.is_trait() => "trait",
2653             (TypeNS, _) => "type",
2654         };
2655
2656         let msg = format!("the name `{}` is defined multiple times", name);
2657
2658         let mut err = match (old_binding.is_extern_crate(), new_binding.is_extern_crate()) {
2659             (true, true) => struct_span_err!(self.session, span, E0259, "{}", msg),
2660             (true, _) | (_, true) => match new_binding.is_import() && old_binding.is_import() {
2661                 true => struct_span_err!(self.session, span, E0254, "{}", msg),
2662                 false => struct_span_err!(self.session, span, E0260, "{}", msg),
2663             },
2664             _ => match (old_binding.is_import(), new_binding.is_import()) {
2665                 (false, false) => struct_span_err!(self.session, span, E0428, "{}", msg),
2666                 (true, true) => struct_span_err!(self.session, span, E0252, "{}", msg),
2667                 _ => struct_span_err!(self.session, span, E0255, "{}", msg),
2668             },
2669         };
2670
2671         err.note(&format!(
2672             "`{}` must be defined only once in the {} namespace of this {}",
2673             name,
2674             ns.descr(),
2675             container
2676         ));
2677
2678         err.span_label(span, format!("`{}` re{} here", name, new_participle));
2679         err.span_label(
2680             self.session.source_map().guess_head_span(old_binding.span),
2681             format!("previous {} of the {} `{}` here", old_noun, old_kind, name),
2682         );
2683
2684         // See https://github.com/rust-lang/rust/issues/32354
2685         use NameBindingKind::Import;
2686         let import = match (&new_binding.kind, &old_binding.kind) {
2687             // If there are two imports where one or both have attributes then prefer removing the
2688             // import without attributes.
2689             (Import { import: new, .. }, Import { import: old, .. })
2690                 if {
2691                     !new_binding.span.is_dummy()
2692                         && !old_binding.span.is_dummy()
2693                         && (new.has_attributes || old.has_attributes)
2694                 } =>
2695             {
2696                 if old.has_attributes {
2697                     Some((new, new_binding.span, true))
2698                 } else {
2699                     Some((old, old_binding.span, true))
2700                 }
2701             }
2702             // Otherwise prioritize the new binding.
2703             (Import { import, .. }, other) if !new_binding.span.is_dummy() => {
2704                 Some((import, new_binding.span, other.is_import()))
2705             }
2706             (other, Import { import, .. }) if !old_binding.span.is_dummy() => {
2707                 Some((import, old_binding.span, other.is_import()))
2708             }
2709             _ => None,
2710         };
2711
2712         // Check if the target of the use for both bindings is the same.
2713         let duplicate = new_binding.res().opt_def_id() == old_binding.res().opt_def_id();
2714         let has_dummy_span = new_binding.span.is_dummy() || old_binding.span.is_dummy();
2715         let from_item =
2716             self.extern_prelude.get(&ident).map(|entry| entry.introduced_by_item).unwrap_or(true);
2717         // Only suggest removing an import if both bindings are to the same def, if both spans
2718         // aren't dummy spans. Further, if both bindings are imports, then the ident must have
2719         // been introduced by a item.
2720         let should_remove_import = duplicate
2721             && !has_dummy_span
2722             && ((new_binding.is_extern_crate() || old_binding.is_extern_crate()) || from_item);
2723
2724         match import {
2725             Some((import, span, true)) if should_remove_import && import.is_nested() => {
2726                 self.add_suggestion_for_duplicate_nested_use(&mut err, import, span)
2727             }
2728             Some((import, _, true)) if should_remove_import && !import.is_glob() => {
2729                 // Simple case - remove the entire import. Due to the above match arm, this can
2730                 // only be a single use so just remove it entirely.
2731                 err.tool_only_span_suggestion(
2732                     import.use_span_with_attributes,
2733                     "remove unnecessary import",
2734                     String::new(),
2735                     Applicability::MaybeIncorrect,
2736                 );
2737             }
2738             Some((import, span, _)) => {
2739                 self.add_suggestion_for_rename_of_use(&mut err, name, import, span)
2740             }
2741             _ => {}
2742         }
2743
2744         err.emit();
2745         self.name_already_seen.insert(name, span);
2746     }
2747
2748     /// This function adds a suggestion to change the binding name of a new import that conflicts
2749     /// with an existing import.
2750     ///
2751     /// ```text,ignore (diagnostic)
2752     /// help: you can use `as` to change the binding name of the import
2753     ///    |
2754     /// LL | use foo::bar as other_bar;
2755     ///    |     ^^^^^^^^^^^^^^^^^^^^^
2756     /// ```
2757     fn add_suggestion_for_rename_of_use(
2758         &self,
2759         err: &mut DiagnosticBuilder<'_>,
2760         name: Symbol,
2761         import: &Import<'_>,
2762         binding_span: Span,
2763     ) {
2764         let suggested_name = if name.as_str().chars().next().unwrap().is_uppercase() {
2765             format!("Other{}", name)
2766         } else {
2767             format!("other_{}", name)
2768         };
2769
2770         let mut suggestion = None;
2771         match import.kind {
2772             ImportKind::Single { type_ns_only: true, .. } => {
2773                 suggestion = Some(format!("self as {}", suggested_name))
2774             }
2775             ImportKind::Single { source, .. } => {
2776                 if let Some(pos) =
2777                     source.span.hi().0.checked_sub(binding_span.lo().0).map(|pos| pos as usize)
2778                 {
2779                     if let Ok(snippet) = self.session.source_map().span_to_snippet(binding_span) {
2780                         if pos <= snippet.len() {
2781                             suggestion = Some(format!(
2782                                 "{} as {}{}",
2783                                 &snippet[..pos],
2784                                 suggested_name,
2785                                 if snippet.ends_with(';') { ";" } else { "" }
2786                             ))
2787                         }
2788                     }
2789                 }
2790             }
2791             ImportKind::ExternCrate { source, target, .. } => {
2792                 suggestion = Some(format!(
2793                     "extern crate {} as {};",
2794                     source.unwrap_or(target.name),
2795                     suggested_name,
2796                 ))
2797             }
2798             _ => unreachable!(),
2799         }
2800
2801         let rename_msg = "you can use `as` to change the binding name of the import";
2802         if let Some(suggestion) = suggestion {
2803             err.span_suggestion(
2804                 binding_span,
2805                 rename_msg,
2806                 suggestion,
2807                 Applicability::MaybeIncorrect,
2808             );
2809         } else {
2810             err.span_label(binding_span, rename_msg);
2811         }
2812     }
2813
2814     /// This function adds a suggestion to remove a unnecessary binding from an import that is
2815     /// nested. In the following example, this function will be invoked to remove the `a` binding
2816     /// in the second use statement:
2817     ///
2818     /// ```ignore (diagnostic)
2819     /// use issue_52891::a;
2820     /// use issue_52891::{d, a, e};
2821     /// ```
2822     ///
2823     /// The following suggestion will be added:
2824     ///
2825     /// ```ignore (diagnostic)
2826     /// use issue_52891::{d, a, e};
2827     ///                      ^-- help: remove unnecessary import
2828     /// ```
2829     ///
2830     /// If the nested use contains only one import then the suggestion will remove the entire
2831     /// line.
2832     ///
2833     /// It is expected that the provided import is nested - this isn't checked by the
2834     /// function. If this invariant is not upheld, this function's behaviour will be unexpected
2835     /// as characters expected by span manipulations won't be present.
2836     fn add_suggestion_for_duplicate_nested_use(
2837         &self,
2838         err: &mut DiagnosticBuilder<'_>,
2839         import: &Import<'_>,
2840         binding_span: Span,
2841     ) {
2842         assert!(import.is_nested());
2843         let message = "remove unnecessary import";
2844
2845         // Two examples will be used to illustrate the span manipulations we're doing:
2846         //
2847         // - Given `use issue_52891::{d, a, e};` where `a` is a duplicate then `binding_span` is
2848         //   `a` and `import.use_span` is `issue_52891::{d, a, e};`.
2849         // - Given `use issue_52891::{d, e, a};` where `a` is a duplicate then `binding_span` is
2850         //   `a` and `import.use_span` is `issue_52891::{d, e, a};`.
2851
2852         let (found_closing_brace, span) =
2853             find_span_of_binding_until_next_binding(self.session, binding_span, import.use_span);
2854
2855         // If there was a closing brace then identify the span to remove any trailing commas from
2856         // previous imports.
2857         if found_closing_brace {
2858             if let Some(span) = extend_span_to_previous_binding(self.session, span) {
2859                 err.tool_only_span_suggestion(
2860                     span,
2861                     message,
2862                     String::new(),
2863                     Applicability::MaybeIncorrect,
2864                 );
2865             } else {
2866                 // Remove the entire line if we cannot extend the span back, this indicates a
2867                 // `issue_52891::{self}` case.
2868                 err.span_suggestion(
2869                     import.use_span_with_attributes,
2870                     message,
2871                     String::new(),
2872                     Applicability::MaybeIncorrect,
2873                 );
2874             }
2875
2876             return;
2877         }
2878
2879         err.span_suggestion(span, message, String::new(), Applicability::MachineApplicable);
2880     }
2881
2882     fn extern_prelude_get(
2883         &mut self,
2884         ident: Ident,
2885         speculative: bool,
2886     ) -> Option<&'a NameBinding<'a>> {
2887         if ident.is_path_segment_keyword() {
2888             // Make sure `self`, `super` etc produce an error when passed to here.
2889             return None;
2890         }
2891         self.extern_prelude.get(&ident.normalize_to_macros_2_0()).cloned().and_then(|entry| {
2892             if let Some(binding) = entry.extern_crate_item {
2893                 if !speculative && entry.introduced_by_item {
2894                     self.record_use(ident, TypeNS, binding, false);
2895                 }
2896                 Some(binding)
2897             } else {
2898                 let crate_id = if !speculative {
2899                     self.crate_loader.process_path_extern(ident.name, ident.span)
2900                 } else {
2901                     self.crate_loader.maybe_process_path_extern(ident.name, ident.span)?
2902                 };
2903                 let crate_root = self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX });
2904                 Some(
2905                     (crate_root, ty::Visibility::Public, DUMMY_SP, ExpnId::root())
2906                         .to_name_binding(self.arenas),
2907                 )
2908             }
2909         })
2910     }
2911
2912     /// Rustdoc uses this to resolve things in a recoverable way. `ResolutionError<'a>`
2913     /// isn't something that can be returned because it can't be made to live that long,
2914     /// and also it's a private type. Fortunately rustdoc doesn't need to know the error,
2915     /// just that an error occurred.
2916     // FIXME(Manishearth): intra-doc links won't get warned of epoch changes.
2917     pub fn resolve_str_path_error(
2918         &mut self,
2919         span: Span,
2920         path_str: &str,
2921         ns: Namespace,
2922         module_id: NodeId,
2923     ) -> Result<(ast::Path, Res), ()> {
2924         let path = if path_str.starts_with("::") {
2925             ast::Path {
2926                 span,
2927                 segments: iter::once(Ident::with_dummy_span(kw::PathRoot))
2928                     .chain(path_str.split("::").skip(1).map(Ident::from_str))
2929                     .map(|i| self.new_ast_path_segment(i))
2930                     .collect(),
2931             }
2932         } else {
2933             ast::Path {
2934                 span,
2935                 segments: path_str
2936                     .split("::")
2937                     .map(Ident::from_str)
2938                     .map(|i| self.new_ast_path_segment(i))
2939                     .collect(),
2940             }
2941         };
2942         let module = self.block_map.get(&module_id).copied().unwrap_or_else(|| {
2943             let def_id = self.definitions.local_def_id(module_id);
2944             self.module_map.get(&def_id).copied().unwrap_or(self.graph_root)
2945         });
2946         let parent_scope = &ParentScope::module(module);
2947         let res = self.resolve_ast_path(&path, ns, parent_scope).map_err(|_| ())?;
2948         Ok((path, res))
2949     }
2950
2951     // Resolve a path passed from rustdoc or HIR lowering.
2952     fn resolve_ast_path(
2953         &mut self,
2954         path: &ast::Path,
2955         ns: Namespace,
2956         parent_scope: &ParentScope<'a>,
2957     ) -> Result<Res, (Span, ResolutionError<'a>)> {
2958         match self.resolve_path(
2959             &Segment::from_path(path),
2960             Some(ns),
2961             parent_scope,
2962             true,
2963             path.span,
2964             CrateLint::No,
2965         ) {
2966             PathResult::Module(ModuleOrUniformRoot::Module(module)) => Ok(module.res().unwrap()),
2967             PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 => {
2968                 Ok(path_res.base_res())
2969             }
2970             PathResult::NonModule(..) => Err((
2971                 path.span,
2972                 ResolutionError::FailedToResolve {
2973                     label: String::from("type-relative paths are not supported in this context"),
2974                     suggestion: None,
2975                 },
2976             )),
2977             PathResult::Module(..) | PathResult::Indeterminate => unreachable!(),
2978             PathResult::Failed { span, label, suggestion, .. } => {
2979                 Err((span, ResolutionError::FailedToResolve { label, suggestion }))
2980             }
2981         }
2982     }
2983
2984     fn new_ast_path_segment(&mut self, ident: Ident) -> ast::PathSegment {
2985         let mut seg = ast::PathSegment::from_ident(ident);
2986         seg.id = self.next_node_id();
2987         seg
2988     }
2989
2990     // For rustdoc.
2991     pub fn graph_root(&self) -> Module<'a> {
2992         self.graph_root
2993     }
2994
2995     // For rustdoc.
2996     pub fn all_macros(&self) -> &FxHashMap<Symbol, Res> {
2997         &self.all_macros
2998     }
2999 }
3000
3001 fn names_to_string(names: &[Symbol]) -> String {
3002     let mut result = String::new();
3003     for (i, name) in names.iter().filter(|name| **name != kw::PathRoot).enumerate() {
3004         if i > 0 {
3005             result.push_str("::");
3006         }
3007         if Ident::with_dummy_span(*name).is_raw_guess() {
3008             result.push_str("r#");
3009         }
3010         result.push_str(&name.as_str());
3011     }
3012     result
3013 }
3014
3015 fn path_names_to_string(path: &Path) -> String {
3016     names_to_string(&path.segments.iter().map(|seg| seg.ident.name).collect::<Vec<_>>())
3017 }
3018
3019 /// A somewhat inefficient routine to obtain the name of a module.
3020 fn module_to_string(module: Module<'_>) -> Option<String> {
3021     let mut names = Vec::new();
3022
3023     fn collect_mod(names: &mut Vec<Symbol>, module: Module<'_>) {
3024         if let ModuleKind::Def(.., name) = module.kind {
3025             if let Some(parent) = module.parent {
3026                 names.push(name);
3027                 collect_mod(names, parent);
3028             }
3029         } else {
3030             names.push(Symbol::intern("<opaque>"));
3031             collect_mod(names, module.parent.unwrap());
3032         }
3033     }
3034     collect_mod(&mut names, module);
3035
3036     if names.is_empty() {
3037         return None;
3038     }
3039     names.reverse();
3040     Some(names_to_string(&names))
3041 }
3042
3043 #[derive(Copy, Clone, Debug)]
3044 enum CrateLint {
3045     /// Do not issue the lint.
3046     No,
3047
3048     /// This lint applies to some arbitrary path; e.g., `impl ::foo::Bar`.
3049     /// In this case, we can take the span of that path.
3050     SimplePath(NodeId),
3051
3052     /// This lint comes from a `use` statement. In this case, what we
3053     /// care about really is the *root* `use` statement; e.g., if we
3054     /// have nested things like `use a::{b, c}`, we care about the
3055     /// `use a` part.
3056     UsePath { root_id: NodeId, root_span: Span },
3057
3058     /// This is the "trait item" from a fully qualified path. For example,
3059     /// we might be resolving  `X::Y::Z` from a path like `<T as X::Y>::Z`.
3060     /// The `path_span` is the span of the to the trait itself (`X::Y`).
3061     QPathTrait { qpath_id: NodeId, qpath_span: Span },
3062 }
3063
3064 impl CrateLint {
3065     fn node_id(&self) -> Option<NodeId> {
3066         match *self {
3067             CrateLint::No => None,
3068             CrateLint::SimplePath(id)
3069             | CrateLint::UsePath { root_id: id, .. }
3070             | CrateLint::QPathTrait { qpath_id: id, .. } => Some(id),
3071         }
3072     }
3073 }
3074
3075 pub fn provide(providers: &mut Providers<'_>) {
3076     late::lifetimes::provide(providers);
3077 }