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