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