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