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