]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_resolve/src/lib.rs
Rollup merge of #96142 - cjgillot:no-crate-def-index, r=petrochenkov
[rust.git] / compiler / rustc_resolve / src / lib.rs
1 //! This crate is responsible for the part of name resolution that doesn't require type checker.
2 //!
3 //! Module structure of the crate is built here.
4 //! Paths in macros, imports, expressions, types, patterns are resolved here.
5 //! Label and lifetime names are resolved here as well.
6 //!
7 //! Type-relative name resolution (methods, fields, associated items) happens in `rustc_typeck`.
8
9 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
10 #![feature(box_patterns)]
11 #![feature(drain_filter)]
12 #![feature(bool_to_option)]
13 #![feature(crate_visibility_modifier)]
14 #![feature(if_let_guard)]
15 #![feature(let_chains)]
16 #![feature(let_else)]
17 #![feature(never_type)]
18 #![feature(nll)]
19 #![recursion_limit = "256"]
20 #![allow(rustdoc::private_intra_doc_links)]
21 #![allow(rustc::potential_query_instability)]
22
23 #[macro_use]
24 extern crate tracing;
25
26 pub use rustc_hir::def::{Namespace, PerNS};
27
28 use rustc_arena::{DroplessArena, TypedArena};
29 use rustc_ast::node_id::NodeMap;
30 use rustc_ast::{self as ast, NodeId, CRATE_NODE_ID};
31 use rustc_ast::{AngleBracketedArg, Crate, Expr, ExprKind, GenericArg, GenericArgs, LitKind, Path};
32 use rustc_ast_lowering::ResolverAstLowering;
33 use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexMap};
34 use rustc_data_structures::intern::Interned;
35 use rustc_data_structures::sync::Lrc;
36 use rustc_errors::{Applicability, DiagnosticBuilder, ErrorGuaranteed};
37 use rustc_expand::base::{DeriveResolutions, SyntaxExtension, SyntaxExtensionKind};
38 use rustc_hir::def::Namespace::*;
39 use rustc_hir::def::{self, CtorOf, DefKind, PartialRes};
40 use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, DefPathHash, LocalDefId};
41 use rustc_hir::def_id::{CRATE_DEF_ID, LOCAL_CRATE};
42 use rustc_hir::definitions::{DefKey, DefPathData, Definitions};
43 use rustc_hir::TraitCandidate;
44 use rustc_index::vec::IndexVec;
45 use rustc_metadata::creader::{CStore, CrateLoader};
46 use rustc_middle::metadata::ModChild;
47 use rustc_middle::middle::privacy::AccessLevels;
48 use rustc_middle::span_bug;
49 use rustc_middle::ty::query::Providers;
50 use rustc_middle::ty::{self, DefIdTree, MainDefinition, RegisteredTools, ResolverOutputs};
51 use rustc_query_system::ich::StableHashingContext;
52 use rustc_session::cstore::{CrateStore, MetadataLoaderDyn};
53 use rustc_session::lint::LintBuffer;
54 use rustc_session::Session;
55 use rustc_span::hygiene::{ExpnId, LocalExpnId, MacroKind, SyntaxContext, Transparency};
56 use rustc_span::source_map::Spanned;
57 use rustc_span::symbol::{kw, sym, Ident, Symbol};
58 use rustc_span::{Span, DUMMY_SP};
59
60 use smallvec::{smallvec, SmallVec};
61 use std::cell::{Cell, RefCell};
62 use std::collections::BTreeSet;
63 use std::{cmp, fmt, mem, ptr};
64 use tracing::debug;
65
66 use diagnostics::{ImportSuggestion, LabelSuggestion, Suggestion};
67 use imports::{Import, ImportKind, ImportResolver, NameResolution};
68 use late::{HasGenericParams, PathSource};
69 use macros::{MacroRulesBinding, MacroRulesScope, MacroRulesScopeRef};
70
71 use crate::access_levels::AccessLevelsVisitor;
72
73 type Res = def::Res<NodeId>;
74
75 mod access_levels;
76 mod build_reduced_graph;
77 mod check_unused;
78 mod def_collector;
79 mod diagnostics;
80 mod ident;
81 mod imports;
82 mod late;
83 mod macros;
84
85 enum Weak {
86     Yes,
87     No,
88 }
89
90 #[derive(Copy, Clone, PartialEq, Debug)]
91 pub enum Determinacy {
92     Determined,
93     Undetermined,
94 }
95
96 impl Determinacy {
97     fn determined(determined: bool) -> Determinacy {
98         if determined { Determinacy::Determined } else { Determinacy::Undetermined }
99     }
100 }
101
102 /// A specific scope in which a name can be looked up.
103 /// This enum is currently used only for early resolution (imports and macros),
104 /// but not for late resolution yet.
105 #[derive(Clone, Copy)]
106 enum Scope<'a> {
107     DeriveHelpers(LocalExpnId),
108     DeriveHelpersCompat,
109     MacroRules(MacroRulesScopeRef<'a>),
110     CrateRoot,
111     // The node ID is for reporting the `PROC_MACRO_DERIVE_RESOLUTION_FALLBACK`
112     // lint if it should be reported.
113     Module(Module<'a>, Option<NodeId>),
114     RegisteredAttrs,
115     MacroUsePrelude,
116     BuiltinAttrs,
117     ExternPrelude,
118     ToolPrelude,
119     StdLibPrelude,
120     BuiltinTypes,
121 }
122
123 /// Names from different contexts may want to visit different subsets of all specific scopes
124 /// with different restrictions when looking up the resolution.
125 /// This enum is currently used only for early resolution (imports and macros),
126 /// but not for late resolution yet.
127 #[derive(Clone, Copy)]
128 enum ScopeSet<'a> {
129     /// All scopes with the given namespace.
130     All(Namespace, /*is_import*/ bool),
131     /// Crate root, then extern prelude (used for mixed 2015-2018 mode in macros).
132     AbsolutePath(Namespace),
133     /// All scopes with macro namespace and the given macro kind restriction.
134     Macro(MacroKind),
135     /// All scopes with the given namespace, used for partially performing late resolution.
136     /// The node id enables lints and is used for reporting them.
137     Late(Namespace, Module<'a>, Option<NodeId>),
138 }
139
140 /// Everything you need to know about a name's location to resolve it.
141 /// Serves as a starting point for the scope visitor.
142 /// This struct is currently used only for early resolution (imports and macros),
143 /// but not for late resolution yet.
144 #[derive(Clone, Copy, Debug)]
145 pub struct ParentScope<'a> {
146     module: Module<'a>,
147     expansion: LocalExpnId,
148     macro_rules: MacroRulesScopeRef<'a>,
149     derives: &'a [ast::Path],
150 }
151
152 impl<'a> ParentScope<'a> {
153     /// Creates a parent scope with the passed argument used as the module scope component,
154     /// and other scope components set to default empty values.
155     pub fn module(module: Module<'a>, resolver: &Resolver<'a>) -> ParentScope<'a> {
156         ParentScope {
157             module,
158             expansion: LocalExpnId::ROOT,
159             macro_rules: resolver.arenas.alloc_macro_rules_scope(MacroRulesScope::Empty),
160             derives: &[],
161         }
162     }
163 }
164
165 #[derive(Copy, Debug, Clone)]
166 enum ImplTraitContext {
167     Existential,
168     Universal(LocalDefId),
169 }
170
171 #[derive(Eq)]
172 struct BindingError {
173     name: Symbol,
174     origin: BTreeSet<Span>,
175     target: BTreeSet<Span>,
176     could_be_path: bool,
177 }
178
179 impl PartialOrd for BindingError {
180     fn partial_cmp(&self, other: &BindingError) -> Option<cmp::Ordering> {
181         Some(self.cmp(other))
182     }
183 }
184
185 impl PartialEq for BindingError {
186     fn eq(&self, other: &BindingError) -> bool {
187         self.name == other.name
188     }
189 }
190
191 impl Ord for BindingError {
192     fn cmp(&self, other: &BindingError) -> cmp::Ordering {
193         self.name.cmp(&other.name)
194     }
195 }
196
197 enum ResolutionError<'a> {
198     /// Error E0401: can't use type or const parameters from outer function.
199     GenericParamsFromOuterFunction(Res, HasGenericParams),
200     /// Error E0403: the name is already used for a type or const parameter in this generic
201     /// parameter list.
202     NameAlreadyUsedInParameterList(Symbol, Span),
203     /// Error E0407: method is not a member of trait.
204     MethodNotMemberOfTrait(Ident, &'a str, Option<Symbol>),
205     /// Error E0437: type is not a member of trait.
206     TypeNotMemberOfTrait(Ident, &'a str, Option<Symbol>),
207     /// Error E0438: const is not a member of trait.
208     ConstNotMemberOfTrait(Ident, &'a str, Option<Symbol>),
209     /// Error E0408: variable `{}` is not bound in all patterns.
210     VariableNotBoundInPattern(&'a BindingError),
211     /// Error E0409: variable `{}` is bound in inconsistent ways within the same match arm.
212     VariableBoundWithDifferentMode(Symbol, Span),
213     /// Error E0415: identifier is bound more than once in this parameter list.
214     IdentifierBoundMoreThanOnceInParameterList(Symbol),
215     /// Error E0416: identifier is bound more than once in the same pattern.
216     IdentifierBoundMoreThanOnceInSamePattern(Symbol),
217     /// Error E0426: use of undeclared label.
218     UndeclaredLabel { name: Symbol, suggestion: Option<LabelSuggestion> },
219     /// Error E0429: `self` imports are only allowed within a `{ }` list.
220     SelfImportsOnlyAllowedWithin { root: bool, span_with_rename: Span },
221     /// Error E0430: `self` import can only appear once in the list.
222     SelfImportCanOnlyAppearOnceInTheList,
223     /// Error E0431: `self` import can only appear in an import list with a non-empty prefix.
224     SelfImportOnlyInImportListWithNonEmptyPrefix,
225     /// Error E0433: failed to resolve.
226     FailedToResolve { label: String, suggestion: Option<Suggestion> },
227     /// Error E0434: can't capture dynamic environment in a fn item.
228     CannotCaptureDynamicEnvironmentInFnItem,
229     /// Error E0435: attempt to use a non-constant value in a constant.
230     AttemptToUseNonConstantValueInConstant(
231         Ident,
232         /* suggestion */ &'static str,
233         /* current */ &'static str,
234     ),
235     /// Error E0530: `X` bindings cannot shadow `Y`s.
236     BindingShadowsSomethingUnacceptable {
237         shadowing_binding_descr: &'static str,
238         name: Symbol,
239         participle: &'static str,
240         article: &'static str,
241         shadowed_binding_descr: &'static str,
242         shadowed_binding_span: Span,
243     },
244     /// Error E0128: generic parameters with a default cannot use forward-declared identifiers.
245     ForwardDeclaredGenericParam,
246     /// ERROR E0770: the type of const parameters must not depend on other generic parameters.
247     ParamInTyOfConstParam(Symbol),
248     /// generic parameters must not be used inside const evaluations.
249     ///
250     /// This error is only emitted when using `min_const_generics`.
251     ParamInNonTrivialAnonConst { name: Symbol, is_type: bool },
252     /// Error E0735: generic parameters with a default cannot use `Self`
253     SelfInGenericParamDefault,
254     /// Error E0767: use of unreachable label
255     UnreachableLabel { name: Symbol, definition_span: Span, suggestion: Option<LabelSuggestion> },
256     /// Error E0323, E0324, E0325: mismatch between trait item and impl item.
257     TraitImplMismatch {
258         name: Symbol,
259         kind: &'static str,
260         trait_path: String,
261         trait_item_span: Span,
262         code: rustc_errors::DiagnosticId,
263     },
264     /// Inline asm `sym` operand must refer to a `fn` or `static`.
265     InvalidAsmSym,
266 }
267
268 enum VisResolutionError<'a> {
269     Relative2018(Span, &'a ast::Path),
270     AncestorOnly(Span),
271     FailedToResolve(Span, String, Option<Suggestion>),
272     ExpectedFound(Span, String, Res),
273     Indeterminate(Span),
274     ModuleOnly(Span),
275 }
276
277 /// A minimal representation of a path segment. We use this in resolve because we synthesize 'path
278 /// segments' which don't have the rest of an AST or HIR `PathSegment`.
279 #[derive(Clone, Copy, Debug)]
280 pub struct Segment {
281     ident: Ident,
282     id: Option<NodeId>,
283     /// Signals whether this `PathSegment` has generic arguments. Used to avoid providing
284     /// nonsensical suggestions.
285     has_generic_args: bool,
286     /// Signals whether this `PathSegment` has lifetime arguments.
287     has_lifetime_args: bool,
288     args_span: Span,
289 }
290
291 impl Segment {
292     fn from_path(path: &Path) -> Vec<Segment> {
293         path.segments.iter().map(|s| s.into()).collect()
294     }
295
296     fn from_ident(ident: Ident) -> Segment {
297         Segment {
298             ident,
299             id: None,
300             has_generic_args: false,
301             has_lifetime_args: false,
302             args_span: DUMMY_SP,
303         }
304     }
305
306     fn from_ident_and_id(ident: Ident, id: NodeId) -> Segment {
307         Segment {
308             ident,
309             id: Some(id),
310             has_generic_args: false,
311             has_lifetime_args: false,
312             args_span: DUMMY_SP,
313         }
314     }
315
316     fn names_to_string(segments: &[Segment]) -> String {
317         names_to_string(&segments.iter().map(|seg| seg.ident.name).collect::<Vec<_>>())
318     }
319 }
320
321 impl<'a> From<&'a ast::PathSegment> for Segment {
322     fn from(seg: &'a ast::PathSegment) -> Segment {
323         let has_generic_args = seg.args.is_some();
324         let (args_span, has_lifetime_args) = if let Some(args) = seg.args.as_deref() {
325             match args {
326                 GenericArgs::AngleBracketed(args) => {
327                     let found_lifetimes = args
328                         .args
329                         .iter()
330                         .any(|arg| matches!(arg, AngleBracketedArg::Arg(GenericArg::Lifetime(_))));
331                     (args.span, found_lifetimes)
332                 }
333                 GenericArgs::Parenthesized(args) => (args.span, true),
334             }
335         } else {
336             (DUMMY_SP, false)
337         };
338         Segment {
339             ident: seg.ident,
340             id: Some(seg.id),
341             has_generic_args,
342             has_lifetime_args,
343             args_span,
344         }
345     }
346 }
347
348 /// An intermediate resolution result.
349 ///
350 /// This refers to the thing referred by a name. The difference between `Res` and `Item` is that
351 /// items are visible in their whole block, while `Res`es only from the place they are defined
352 /// forward.
353 #[derive(Debug)]
354 enum LexicalScopeBinding<'a> {
355     Item(&'a NameBinding<'a>),
356     Res(Res),
357 }
358
359 impl<'a> LexicalScopeBinding<'a> {
360     fn res(self) -> Res {
361         match self {
362             LexicalScopeBinding::Item(binding) => binding.res(),
363             LexicalScopeBinding::Res(res) => res,
364         }
365     }
366 }
367
368 #[derive(Copy, Clone, Debug)]
369 enum ModuleOrUniformRoot<'a> {
370     /// Regular module.
371     Module(Module<'a>),
372
373     /// Virtual module that denotes resolution in crate root with fallback to extern prelude.
374     CrateRootAndExternPrelude,
375
376     /// Virtual module that denotes resolution in extern prelude.
377     /// Used for paths starting with `::` on 2018 edition.
378     ExternPrelude,
379
380     /// Virtual module that denotes resolution in current scope.
381     /// Used only for resolving single-segment imports. The reason it exists is that import paths
382     /// are always split into two parts, the first of which should be some kind of module.
383     CurrentScope,
384 }
385
386 impl ModuleOrUniformRoot<'_> {
387     fn same_def(lhs: Self, rhs: Self) -> bool {
388         match (lhs, rhs) {
389             (ModuleOrUniformRoot::Module(lhs), ModuleOrUniformRoot::Module(rhs)) => {
390                 ptr::eq(lhs, rhs)
391             }
392             (
393                 ModuleOrUniformRoot::CrateRootAndExternPrelude,
394                 ModuleOrUniformRoot::CrateRootAndExternPrelude,
395             )
396             | (ModuleOrUniformRoot::ExternPrelude, ModuleOrUniformRoot::ExternPrelude)
397             | (ModuleOrUniformRoot::CurrentScope, ModuleOrUniformRoot::CurrentScope) => true,
398             _ => false,
399         }
400     }
401 }
402
403 #[derive(Clone, Debug)]
404 enum PathResult<'a> {
405     Module(ModuleOrUniformRoot<'a>),
406     NonModule(PartialRes),
407     Indeterminate,
408     Failed {
409         span: Span,
410         label: String,
411         suggestion: Option<Suggestion>,
412         is_error_from_last_segment: bool,
413     },
414 }
415
416 impl<'a> PathResult<'a> {
417     fn failed(
418         span: Span,
419         is_error_from_last_segment: bool,
420         finalize: bool,
421         label_and_suggestion: impl FnOnce() -> (String, Option<Suggestion>),
422     ) -> PathResult<'a> {
423         let (label, suggestion) =
424             if finalize { label_and_suggestion() } else { (String::new(), None) };
425         PathResult::Failed { span, label, suggestion, is_error_from_last_segment }
426     }
427 }
428
429 #[derive(Debug)]
430 enum ModuleKind {
431     /// An anonymous module; e.g., just a block.
432     ///
433     /// ```
434     /// fn main() {
435     ///     fn f() {} // (1)
436     ///     { // This is an anonymous module
437     ///         f(); // This resolves to (2) as we are inside the block.
438     ///         fn f() {} // (2)
439     ///     }
440     ///     f(); // Resolves to (1)
441     /// }
442     /// ```
443     Block(NodeId),
444     /// Any module with a name.
445     ///
446     /// This could be:
447     ///
448     /// * A normal module â€“ either `mod from_file;` or `mod from_block { }` â€“
449     ///   or the crate root (which is conceptually a top-level module).
450     ///   Note that the crate root's [name][Self::name] will be [`kw::Empty`].
451     /// * A trait or an enum (it implicitly contains associated types, methods and variant
452     ///   constructors).
453     Def(DefKind, DefId, Symbol),
454 }
455
456 impl ModuleKind {
457     /// Get name of the module.
458     pub fn name(&self) -> Option<Symbol> {
459         match self {
460             ModuleKind::Block(..) => None,
461             ModuleKind::Def(.., name) => Some(*name),
462         }
463     }
464 }
465
466 /// A key that identifies a binding in a given `Module`.
467 ///
468 /// Multiple bindings in the same module can have the same key (in a valid
469 /// program) if all but one of them come from glob imports.
470 #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
471 struct BindingKey {
472     /// The identifier for the binding, always the `normalize_to_macros_2_0` version of the
473     /// identifier.
474     ident: Ident,
475     ns: Namespace,
476     /// 0 if ident is not `_`, otherwise a value that's unique to the specific
477     /// `_` in the expanded AST that introduced this binding.
478     disambiguator: u32,
479 }
480
481 type Resolutions<'a> = RefCell<FxIndexMap<BindingKey, &'a RefCell<NameResolution<'a>>>>;
482
483 /// One node in the tree of modules.
484 ///
485 /// Note that a "module" in resolve is broader than a `mod` that you declare in Rust code. It may be one of these:
486 ///
487 /// * `mod`
488 /// * crate root (aka, top-level anonymous module)
489 /// * `enum`
490 /// * `trait`
491 /// * curly-braced block with statements
492 ///
493 /// You can use [`ModuleData::kind`] to determine the kind of module this is.
494 pub struct ModuleData<'a> {
495     /// The direct parent module (it may not be a `mod`, however).
496     parent: Option<Module<'a>>,
497     /// What kind of module this is, because this may not be a `mod`.
498     kind: ModuleKind,
499
500     /// Mapping between names and their (possibly in-progress) resolutions in this module.
501     /// Resolutions in modules from other crates are not populated until accessed.
502     lazy_resolutions: Resolutions<'a>,
503     /// True if this is a module from other crate that needs to be populated on access.
504     populate_on_access: Cell<bool>,
505
506     /// Macro invocations that can expand into items in this module.
507     unexpanded_invocations: RefCell<FxHashSet<LocalExpnId>>,
508
509     /// Whether `#[no_implicit_prelude]` is active.
510     no_implicit_prelude: bool,
511
512     glob_importers: RefCell<Vec<&'a Import<'a>>>,
513     globs: RefCell<Vec<&'a Import<'a>>>,
514
515     /// Used to memoize the traits in this module for faster searches through all traits in scope.
516     traits: RefCell<Option<Box<[(Ident, &'a NameBinding<'a>)]>>>,
517
518     /// Span of the module itself. Used for error reporting.
519     span: Span,
520
521     expansion: ExpnId,
522 }
523
524 type Module<'a> = &'a ModuleData<'a>;
525
526 impl<'a> ModuleData<'a> {
527     fn new(
528         parent: Option<Module<'a>>,
529         kind: ModuleKind,
530         expansion: ExpnId,
531         span: Span,
532         no_implicit_prelude: bool,
533     ) -> Self {
534         let is_foreign = match kind {
535             ModuleKind::Def(_, def_id, _) => !def_id.is_local(),
536             ModuleKind::Block(_) => false,
537         };
538         ModuleData {
539             parent,
540             kind,
541             lazy_resolutions: Default::default(),
542             populate_on_access: Cell::new(is_foreign),
543             unexpanded_invocations: Default::default(),
544             no_implicit_prelude,
545             glob_importers: RefCell::new(Vec::new()),
546             globs: RefCell::new(Vec::new()),
547             traits: RefCell::new(None),
548             span,
549             expansion,
550         }
551     }
552
553     fn for_each_child<R, F>(&'a self, resolver: &mut R, mut f: F)
554     where
555         R: AsMut<Resolver<'a>>,
556         F: FnMut(&mut R, Ident, Namespace, &'a NameBinding<'a>),
557     {
558         for (key, name_resolution) in resolver.as_mut().resolutions(self).borrow().iter() {
559             if let Some(binding) = name_resolution.borrow().binding {
560                 f(resolver, key.ident, key.ns, binding);
561             }
562         }
563     }
564
565     /// This modifies `self` in place. The traits will be stored in `self.traits`.
566     fn ensure_traits<R>(&'a self, resolver: &mut R)
567     where
568         R: AsMut<Resolver<'a>>,
569     {
570         let mut traits = self.traits.borrow_mut();
571         if traits.is_none() {
572             let mut collected_traits = Vec::new();
573             self.for_each_child(resolver, |_, name, ns, binding| {
574                 if ns != TypeNS {
575                     return;
576                 }
577                 if let Res::Def(DefKind::Trait | DefKind::TraitAlias, _) = binding.res() {
578                     collected_traits.push((name, binding))
579                 }
580             });
581             *traits = Some(collected_traits.into_boxed_slice());
582         }
583     }
584
585     fn res(&self) -> Option<Res> {
586         match self.kind {
587             ModuleKind::Def(kind, def_id, _) => Some(Res::Def(kind, def_id)),
588             _ => None,
589         }
590     }
591
592     // Public for rustdoc.
593     pub fn def_id(&self) -> DefId {
594         self.opt_def_id().expect("`ModuleData::def_id` is called on a block module")
595     }
596
597     fn opt_def_id(&self) -> Option<DefId> {
598         match self.kind {
599             ModuleKind::Def(_, def_id, _) => Some(def_id),
600             _ => None,
601         }
602     }
603
604     // `self` resolves to the first module ancestor that `is_normal`.
605     fn is_normal(&self) -> bool {
606         matches!(self.kind, ModuleKind::Def(DefKind::Mod, _, _))
607     }
608
609     fn is_trait(&self) -> bool {
610         matches!(self.kind, ModuleKind::Def(DefKind::Trait, _, _))
611     }
612
613     fn nearest_item_scope(&'a self) -> Module<'a> {
614         match self.kind {
615             ModuleKind::Def(DefKind::Enum | DefKind::Trait, ..) => {
616                 self.parent.expect("enum or trait module without a parent")
617             }
618             _ => self,
619         }
620     }
621
622     /// The [`DefId`] of the nearest `mod` item ancestor (which may be this module).
623     /// This may be the crate root.
624     fn nearest_parent_mod(&self) -> DefId {
625         match self.kind {
626             ModuleKind::Def(DefKind::Mod, def_id, _) => def_id,
627             _ => self.parent.expect("non-root module without parent").nearest_parent_mod(),
628         }
629     }
630
631     fn is_ancestor_of(&self, mut other: &Self) -> bool {
632         while !ptr::eq(self, other) {
633             if let Some(parent) = other.parent {
634                 other = parent;
635             } else {
636                 return false;
637             }
638         }
639         true
640     }
641 }
642
643 impl<'a> fmt::Debug for ModuleData<'a> {
644     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
645         write!(f, "{:?}", self.res())
646     }
647 }
648
649 /// Records a possibly-private value, type, or module definition.
650 #[derive(Clone, Debug)]
651 pub struct NameBinding<'a> {
652     kind: NameBindingKind<'a>,
653     ambiguity: Option<(&'a NameBinding<'a>, AmbiguityKind)>,
654     expansion: LocalExpnId,
655     span: Span,
656     vis: ty::Visibility,
657 }
658
659 pub trait ToNameBinding<'a> {
660     fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a>;
661 }
662
663 impl<'a> ToNameBinding<'a> for &'a NameBinding<'a> {
664     fn to_name_binding(self, _: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
665         self
666     }
667 }
668
669 #[derive(Clone, Debug)]
670 enum NameBindingKind<'a> {
671     Res(Res, /* is_macro_export */ bool),
672     Module(Module<'a>),
673     Import { binding: &'a NameBinding<'a>, import: &'a Import<'a>, used: Cell<bool> },
674 }
675
676 impl<'a> NameBindingKind<'a> {
677     /// Is this a name binding of an import?
678     fn is_import(&self) -> bool {
679         matches!(*self, NameBindingKind::Import { .. })
680     }
681 }
682
683 struct PrivacyError<'a> {
684     ident: Ident,
685     binding: &'a NameBinding<'a>,
686     dedup_span: Span,
687 }
688
689 struct UseError<'a> {
690     err: DiagnosticBuilder<'a, ErrorGuaranteed>,
691     /// Candidates which user could `use` to access the missing type.
692     candidates: Vec<ImportSuggestion>,
693     /// The `DefId` of the module to place the use-statements in.
694     def_id: DefId,
695     /// Whether the diagnostic should say "instead" (as in `consider importing ... instead`).
696     instead: bool,
697     /// Extra free-form suggestion.
698     suggestion: Option<(Span, &'static str, String, Applicability)>,
699 }
700
701 #[derive(Clone, Copy, PartialEq, Debug)]
702 enum AmbiguityKind {
703     Import,
704     BuiltinAttr,
705     DeriveHelper,
706     MacroRulesVsModularized,
707     GlobVsOuter,
708     GlobVsGlob,
709     GlobVsExpanded,
710     MoreExpandedVsOuter,
711 }
712
713 impl AmbiguityKind {
714     fn descr(self) -> &'static str {
715         match self {
716             AmbiguityKind::Import => "multiple potential import sources",
717             AmbiguityKind::BuiltinAttr => "a name conflict with a builtin attribute",
718             AmbiguityKind::DeriveHelper => "a name conflict with a derive helper attribute",
719             AmbiguityKind::MacroRulesVsModularized => {
720                 "a conflict between a `macro_rules` name and a non-`macro_rules` name from another module"
721             }
722             AmbiguityKind::GlobVsOuter => {
723                 "a conflict between a name from a glob import and an outer scope during import or macro resolution"
724             }
725             AmbiguityKind::GlobVsGlob => "multiple glob imports of a name in the same module",
726             AmbiguityKind::GlobVsExpanded => {
727                 "a conflict between a name from a glob import and a macro-expanded name in the same module during import or macro resolution"
728             }
729             AmbiguityKind::MoreExpandedVsOuter => {
730                 "a conflict between a macro-expanded name and a less macro-expanded name from outer scope during import or macro resolution"
731             }
732         }
733     }
734 }
735
736 /// Miscellaneous bits of metadata for better ambiguity error reporting.
737 #[derive(Clone, Copy, PartialEq)]
738 enum AmbiguityErrorMisc {
739     SuggestCrate,
740     SuggestSelf,
741     FromPrelude,
742     None,
743 }
744
745 struct AmbiguityError<'a> {
746     kind: AmbiguityKind,
747     ident: Ident,
748     b1: &'a NameBinding<'a>,
749     b2: &'a NameBinding<'a>,
750     misc1: AmbiguityErrorMisc,
751     misc2: AmbiguityErrorMisc,
752 }
753
754 impl<'a> NameBinding<'a> {
755     fn module(&self) -> Option<Module<'a>> {
756         match self.kind {
757             NameBindingKind::Module(module) => Some(module),
758             NameBindingKind::Import { binding, .. } => binding.module(),
759             _ => None,
760         }
761     }
762
763     fn res(&self) -> Res {
764         match self.kind {
765             NameBindingKind::Res(res, _) => res,
766             NameBindingKind::Module(module) => module.res().unwrap(),
767             NameBindingKind::Import { binding, .. } => binding.res(),
768         }
769     }
770
771     fn is_ambiguity(&self) -> bool {
772         self.ambiguity.is_some()
773             || match self.kind {
774                 NameBindingKind::Import { binding, .. } => binding.is_ambiguity(),
775                 _ => false,
776             }
777     }
778
779     fn is_possibly_imported_variant(&self) -> bool {
780         match self.kind {
781             NameBindingKind::Import { binding, .. } => binding.is_possibly_imported_variant(),
782             NameBindingKind::Res(
783                 Res::Def(DefKind::Variant | DefKind::Ctor(CtorOf::Variant, ..), _),
784                 _,
785             ) => true,
786             NameBindingKind::Res(..) | NameBindingKind::Module(..) => false,
787         }
788     }
789
790     fn is_extern_crate(&self) -> bool {
791         match self.kind {
792             NameBindingKind::Import {
793                 import: &Import { kind: ImportKind::ExternCrate { .. }, .. },
794                 ..
795             } => true,
796             NameBindingKind::Module(&ModuleData {
797                 kind: ModuleKind::Def(DefKind::Mod, def_id, _),
798                 ..
799             }) => def_id.is_crate_root(),
800             _ => false,
801         }
802     }
803
804     fn is_import(&self) -> bool {
805         matches!(self.kind, NameBindingKind::Import { .. })
806     }
807
808     fn is_glob_import(&self) -> bool {
809         match self.kind {
810             NameBindingKind::Import { import, .. } => import.is_glob(),
811             _ => false,
812         }
813     }
814
815     fn is_importable(&self) -> bool {
816         !matches!(
817             self.res(),
818             Res::Def(DefKind::AssocConst | DefKind::AssocFn | DefKind::AssocTy, _)
819         )
820     }
821
822     fn macro_kind(&self) -> Option<MacroKind> {
823         self.res().macro_kind()
824     }
825
826     // Suppose that we resolved macro invocation with `invoc_parent_expansion` to binding `binding`
827     // at some expansion round `max(invoc, binding)` when they both emerged from macros.
828     // Then this function returns `true` if `self` may emerge from a macro *after* that
829     // in some later round and screw up our previously found resolution.
830     // See more detailed explanation in
831     // https://github.com/rust-lang/rust/pull/53778#issuecomment-419224049
832     fn may_appear_after(
833         &self,
834         invoc_parent_expansion: LocalExpnId,
835         binding: &NameBinding<'_>,
836     ) -> bool {
837         // self > max(invoc, binding) => !(self <= invoc || self <= binding)
838         // Expansions are partially ordered, so "may appear after" is an inversion of
839         // "certainly appears before or simultaneously" and includes unordered cases.
840         let self_parent_expansion = self.expansion;
841         let other_parent_expansion = binding.expansion;
842         let certainly_before_other_or_simultaneously =
843             other_parent_expansion.is_descendant_of(self_parent_expansion);
844         let certainly_before_invoc_or_simultaneously =
845             invoc_parent_expansion.is_descendant_of(self_parent_expansion);
846         !(certainly_before_other_or_simultaneously || certainly_before_invoc_or_simultaneously)
847     }
848 }
849
850 #[derive(Debug, Default, Clone)]
851 pub struct ExternPreludeEntry<'a> {
852     extern_crate_item: Option<&'a NameBinding<'a>>,
853     pub introduced_by_item: bool,
854 }
855
856 /// Used for better errors for E0773
857 enum BuiltinMacroState {
858     NotYetSeen(SyntaxExtensionKind),
859     AlreadySeen(Span),
860 }
861
862 struct DeriveData {
863     resolutions: DeriveResolutions,
864     helper_attrs: Vec<(usize, Ident)>,
865     has_derive_copy: bool,
866 }
867
868 /// The main resolver class.
869 ///
870 /// This is the visitor that walks the whole crate.
871 pub struct Resolver<'a> {
872     session: &'a Session,
873
874     definitions: Definitions,
875
876     graph_root: Module<'a>,
877
878     prelude: Option<Module<'a>>,
879     extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'a>>,
880
881     /// N.B., this is used only for better diagnostics, not name resolution itself.
882     has_self: FxHashSet<DefId>,
883
884     /// Names of fields of an item `DefId` accessible with dot syntax.
885     /// Used for hints during error reporting.
886     field_names: FxHashMap<DefId, Vec<Spanned<Symbol>>>,
887
888     /// All imports known to succeed or fail.
889     determined_imports: Vec<&'a Import<'a>>,
890
891     /// All non-determined imports.
892     indeterminate_imports: Vec<&'a Import<'a>>,
893
894     // Spans for local variables found during pattern resolution.
895     // Used for suggestions during error reporting.
896     pat_span_map: NodeMap<Span>,
897
898     /// Resolutions for nodes that have a single resolution.
899     partial_res_map: NodeMap<PartialRes>,
900     /// Resolutions for import nodes, which have multiple resolutions in different namespaces.
901     import_res_map: NodeMap<PerNS<Option<Res>>>,
902     /// Resolutions for labels (node IDs of their corresponding blocks or loops).
903     label_res_map: NodeMap<NodeId>,
904
905     /// `CrateNum` resolutions of `extern crate` items.
906     extern_crate_map: FxHashMap<LocalDefId, CrateNum>,
907     reexport_map: FxHashMap<LocalDefId, Vec<ModChild>>,
908     trait_map: NodeMap<Vec<TraitCandidate>>,
909
910     /// A map from nodes to anonymous modules.
911     /// Anonymous modules are pseudo-modules that are implicitly created around items
912     /// contained within blocks.
913     ///
914     /// For example, if we have this:
915     ///
916     ///  fn f() {
917     ///      fn g() {
918     ///          ...
919     ///      }
920     ///  }
921     ///
922     /// There will be an anonymous module created around `g` with the ID of the
923     /// entry block for `f`.
924     block_map: NodeMap<Module<'a>>,
925     /// A fake module that contains no definition and no prelude. Used so that
926     /// some AST passes can generate identifiers that only resolve to local or
927     /// language items.
928     empty_module: Module<'a>,
929     module_map: FxHashMap<DefId, Module<'a>>,
930     binding_parent_modules: FxHashMap<Interned<'a, NameBinding<'a>>, Module<'a>>,
931     underscore_disambiguator: u32,
932
933     /// Maps glob imports to the names of items actually imported.
934     glob_map: FxHashMap<LocalDefId, FxHashSet<Symbol>>,
935     /// Visibilities in "lowered" form, for all entities that have them.
936     visibilities: FxHashMap<LocalDefId, ty::Visibility>,
937     used_imports: FxHashSet<NodeId>,
938     maybe_unused_trait_imports: FxHashSet<LocalDefId>,
939     maybe_unused_extern_crates: Vec<(LocalDefId, Span)>,
940
941     /// Privacy errors are delayed until the end in order to deduplicate them.
942     privacy_errors: Vec<PrivacyError<'a>>,
943     /// Ambiguity errors are delayed for deduplication.
944     ambiguity_errors: Vec<AmbiguityError<'a>>,
945     /// `use` injections are delayed for better placement and deduplication.
946     use_injections: Vec<UseError<'a>>,
947     /// Crate-local macro expanded `macro_export` referred to by a module-relative path.
948     macro_expanded_macro_export_errors: BTreeSet<(Span, Span)>,
949
950     arenas: &'a ResolverArenas<'a>,
951     dummy_binding: &'a NameBinding<'a>,
952
953     crate_loader: CrateLoader<'a>,
954     macro_names: FxHashSet<Ident>,
955     builtin_macros: FxHashMap<Symbol, BuiltinMacroState>,
956     /// A small map keeping true kinds of built-in macros that appear to be fn-like on
957     /// the surface (`macro` items in libcore), but are actually attributes or derives.
958     builtin_macro_kinds: FxHashMap<LocalDefId, MacroKind>,
959     registered_attrs: FxHashSet<Ident>,
960     registered_tools: RegisteredTools,
961     macro_use_prelude: FxHashMap<Symbol, &'a NameBinding<'a>>,
962     /// FIXME: The only user of this is a doc link resolution hack for rustdoc.
963     all_macro_rules: FxHashMap<Symbol, Res>,
964     macro_map: FxHashMap<DefId, Lrc<SyntaxExtension>>,
965     dummy_ext_bang: Lrc<SyntaxExtension>,
966     dummy_ext_derive: Lrc<SyntaxExtension>,
967     non_macro_attr: Lrc<SyntaxExtension>,
968     local_macro_def_scopes: FxHashMap<LocalDefId, Module<'a>>,
969     ast_transform_scopes: FxHashMap<LocalExpnId, Module<'a>>,
970     unused_macros: FxHashMap<LocalDefId, (NodeId, Ident)>,
971     proc_macro_stubs: FxHashSet<LocalDefId>,
972     /// Traces collected during macro resolution and validated when it's complete.
973     single_segment_macro_resolutions:
974         Vec<(Ident, MacroKind, ParentScope<'a>, Option<&'a NameBinding<'a>>)>,
975     multi_segment_macro_resolutions:
976         Vec<(Vec<Segment>, Span, MacroKind, ParentScope<'a>, Option<Res>)>,
977     builtin_attrs: Vec<(Ident, ParentScope<'a>)>,
978     /// `derive(Copy)` marks items they are applied to so they are treated specially later.
979     /// Derive macros cannot modify the item themselves and have to store the markers in the global
980     /// context, so they attach the markers to derive container IDs using this resolver table.
981     containers_deriving_copy: FxHashSet<LocalExpnId>,
982     /// Parent scopes in which the macros were invoked.
983     /// FIXME: `derives` are missing in these parent scopes and need to be taken from elsewhere.
984     invocation_parent_scopes: FxHashMap<LocalExpnId, ParentScope<'a>>,
985     /// `macro_rules` scopes *produced* by expanding the macro invocations,
986     /// include all the `macro_rules` items and other invocations generated by them.
987     output_macro_rules_scopes: FxHashMap<LocalExpnId, MacroRulesScopeRef<'a>>,
988     /// Helper attributes that are in scope for the given expansion.
989     helper_attrs: FxHashMap<LocalExpnId, Vec<Ident>>,
990     /// Ready or in-progress results of resolving paths inside the `#[derive(...)]` attribute
991     /// with the given `ExpnId`.
992     derive_data: FxHashMap<LocalExpnId, DeriveData>,
993
994     /// Avoid duplicated errors for "name already defined".
995     name_already_seen: FxHashMap<Symbol, Span>,
996
997     potentially_unused_imports: Vec<&'a Import<'a>>,
998
999     /// Table for mapping struct IDs into struct constructor IDs,
1000     /// it's not used during normal resolution, only for better error reporting.
1001     /// Also includes of list of each fields visibility
1002     struct_constructors: DefIdMap<(Res, ty::Visibility, Vec<ty::Visibility>)>,
1003
1004     /// Features enabled for this crate.
1005     active_features: FxHashSet<Symbol>,
1006
1007     lint_buffer: LintBuffer,
1008
1009     next_node_id: NodeId,
1010
1011     node_id_to_def_id: FxHashMap<ast::NodeId, LocalDefId>,
1012     def_id_to_node_id: IndexVec<LocalDefId, ast::NodeId>,
1013
1014     /// Indices of unnamed struct or variant fields with unresolved attributes.
1015     placeholder_field_indices: FxHashMap<NodeId, usize>,
1016     /// When collecting definitions from an AST fragment produced by a macro invocation `ExpnId`
1017     /// we know what parent node that fragment should be attached to thanks to this table,
1018     /// and how the `impl Trait` fragments were introduced.
1019     invocation_parents: FxHashMap<LocalExpnId, (LocalDefId, ImplTraitContext)>,
1020
1021     /// Some way to know that we are in a *trait* impl in `visit_assoc_item`.
1022     /// FIXME: Replace with a more general AST map (together with some other fields).
1023     trait_impl_items: FxHashSet<LocalDefId>,
1024
1025     legacy_const_generic_args: FxHashMap<DefId, Option<Vec<usize>>>,
1026     /// Amount of lifetime parameters for each item in the crate.
1027     item_generics_num_lifetimes: FxHashMap<LocalDefId, usize>,
1028
1029     main_def: Option<MainDefinition>,
1030     trait_impls: FxIndexMap<DefId, Vec<LocalDefId>>,
1031     /// A list of proc macro LocalDefIds, written out in the order in which
1032     /// they are declared in the static array generated by proc_macro_harness.
1033     proc_macros: Vec<NodeId>,
1034     confused_type_with_std_module: FxHashMap<Span, Span>,
1035
1036     access_levels: AccessLevels,
1037 }
1038
1039 /// Nothing really interesting here; it just provides memory for the rest of the crate.
1040 #[derive(Default)]
1041 pub struct ResolverArenas<'a> {
1042     modules: TypedArena<ModuleData<'a>>,
1043     local_modules: RefCell<Vec<Module<'a>>>,
1044     imports: TypedArena<Import<'a>>,
1045     name_resolutions: TypedArena<RefCell<NameResolution<'a>>>,
1046     ast_paths: TypedArena<ast::Path>,
1047     dropless: DroplessArena,
1048 }
1049
1050 impl<'a> ResolverArenas<'a> {
1051     fn new_module(
1052         &'a self,
1053         parent: Option<Module<'a>>,
1054         kind: ModuleKind,
1055         expn_id: ExpnId,
1056         span: Span,
1057         no_implicit_prelude: bool,
1058         module_map: &mut FxHashMap<DefId, Module<'a>>,
1059     ) -> Module<'a> {
1060         let module =
1061             self.modules.alloc(ModuleData::new(parent, kind, expn_id, span, no_implicit_prelude));
1062         let def_id = module.opt_def_id();
1063         if def_id.map_or(true, |def_id| def_id.is_local()) {
1064             self.local_modules.borrow_mut().push(module);
1065         }
1066         if let Some(def_id) = def_id {
1067             module_map.insert(def_id, module);
1068         }
1069         module
1070     }
1071     fn local_modules(&'a self) -> std::cell::Ref<'a, Vec<Module<'a>>> {
1072         self.local_modules.borrow()
1073     }
1074     fn alloc_name_binding(&'a self, name_binding: NameBinding<'a>) -> &'a NameBinding<'a> {
1075         self.dropless.alloc(name_binding)
1076     }
1077     fn alloc_import(&'a self, import: Import<'a>) -> &'a Import<'_> {
1078         self.imports.alloc(import)
1079     }
1080     fn alloc_name_resolution(&'a self) -> &'a RefCell<NameResolution<'a>> {
1081         self.name_resolutions.alloc(Default::default())
1082     }
1083     fn alloc_macro_rules_scope(&'a self, scope: MacroRulesScope<'a>) -> MacroRulesScopeRef<'a> {
1084         Interned::new_unchecked(self.dropless.alloc(Cell::new(scope)))
1085     }
1086     fn alloc_macro_rules_binding(
1087         &'a self,
1088         binding: MacroRulesBinding<'a>,
1089     ) -> &'a MacroRulesBinding<'a> {
1090         self.dropless.alloc(binding)
1091     }
1092     fn alloc_ast_paths(&'a self, paths: &[ast::Path]) -> &'a [ast::Path] {
1093         self.ast_paths.alloc_from_iter(paths.iter().cloned())
1094     }
1095     fn alloc_pattern_spans(&'a self, spans: impl Iterator<Item = Span>) -> &'a [Span] {
1096         self.dropless.alloc_from_iter(spans)
1097     }
1098 }
1099
1100 impl<'a> AsMut<Resolver<'a>> for Resolver<'a> {
1101     fn as_mut(&mut self) -> &mut Resolver<'a> {
1102         self
1103     }
1104 }
1105
1106 impl<'a, 'b> DefIdTree for &'a Resolver<'b> {
1107     fn parent(self, id: DefId) -> Option<DefId> {
1108         match id.as_local() {
1109             Some(id) => self.definitions.def_key(id).parent,
1110             None => self.cstore().def_key(id).parent,
1111         }
1112         .map(|index| DefId { index, ..id })
1113     }
1114 }
1115
1116 /// This interface is used through the AST→HIR step, to embed full paths into the HIR. After that
1117 /// the resolver is no longer needed as all the relevant information is inline.
1118 impl ResolverAstLowering for Resolver<'_> {
1119     fn def_key(&self, id: DefId) -> DefKey {
1120         if let Some(id) = id.as_local() {
1121             self.definitions.def_key(id)
1122         } else {
1123             self.cstore().def_key(id)
1124         }
1125     }
1126
1127     #[inline]
1128     fn def_span(&self, id: LocalDefId) -> Span {
1129         self.definitions.def_span(id)
1130     }
1131
1132     fn item_generics_num_lifetimes(&self, def_id: DefId) -> usize {
1133         if let Some(def_id) = def_id.as_local() {
1134             self.item_generics_num_lifetimes[&def_id]
1135         } else {
1136             self.cstore().item_generics_num_lifetimes(def_id, self.session)
1137         }
1138     }
1139
1140     fn legacy_const_generic_args(&mut self, expr: &Expr) -> Option<Vec<usize>> {
1141         self.legacy_const_generic_args(expr)
1142     }
1143
1144     fn get_partial_res(&self, id: NodeId) -> Option<PartialRes> {
1145         self.partial_res_map.get(&id).cloned()
1146     }
1147
1148     fn get_import_res(&self, id: NodeId) -> PerNS<Option<Res>> {
1149         self.import_res_map.get(&id).cloned().unwrap_or_default()
1150     }
1151
1152     fn get_label_res(&self, id: NodeId) -> Option<NodeId> {
1153         self.label_res_map.get(&id).cloned()
1154     }
1155
1156     fn create_stable_hashing_context(&self) -> StableHashingContext<'_> {
1157         StableHashingContext::new(self.session, &self.definitions, self.crate_loader.cstore())
1158     }
1159
1160     fn definitions(&self) -> &Definitions {
1161         &self.definitions
1162     }
1163
1164     fn next_node_id(&mut self) -> NodeId {
1165         self.next_node_id()
1166     }
1167
1168     fn take_trait_map(&mut self, node: NodeId) -> Option<Vec<TraitCandidate>> {
1169         self.trait_map.remove(&node)
1170     }
1171
1172     fn opt_local_def_id(&self, node: NodeId) -> Option<LocalDefId> {
1173         self.node_id_to_def_id.get(&node).copied()
1174     }
1175
1176     fn local_def_id(&self, node: NodeId) -> LocalDefId {
1177         self.opt_local_def_id(node).unwrap_or_else(|| panic!("no entry for node id: `{:?}`", node))
1178     }
1179
1180     fn def_path_hash(&self, def_id: DefId) -> DefPathHash {
1181         match def_id.as_local() {
1182             Some(def_id) => self.definitions.def_path_hash(def_id),
1183             None => self.cstore().def_path_hash(def_id),
1184         }
1185     }
1186
1187     /// Adds a definition with a parent definition.
1188     fn create_def(
1189         &mut self,
1190         parent: LocalDefId,
1191         node_id: ast::NodeId,
1192         data: DefPathData,
1193         expn_id: ExpnId,
1194         span: Span,
1195     ) -> LocalDefId {
1196         assert!(
1197             !self.node_id_to_def_id.contains_key(&node_id),
1198             "adding a def'n for node-id {:?} and data {:?} but a previous def'n exists: {:?}",
1199             node_id,
1200             data,
1201             self.definitions.def_key(self.node_id_to_def_id[&node_id]),
1202         );
1203
1204         let def_id = self.definitions.create_def(parent, data, expn_id, span);
1205
1206         // Some things for which we allocate `LocalDefId`s don't correspond to
1207         // anything in the AST, so they don't have a `NodeId`. For these cases
1208         // we don't need a mapping from `NodeId` to `LocalDefId`.
1209         if node_id != ast::DUMMY_NODE_ID {
1210             debug!("create_def: def_id_to_node_id[{:?}] <-> {:?}", def_id, node_id);
1211             self.node_id_to_def_id.insert(node_id, def_id);
1212         }
1213         assert_eq!(self.def_id_to_node_id.push(node_id), def_id);
1214
1215         def_id
1216     }
1217
1218     fn decl_macro_kind(&self, def_id: LocalDefId) -> MacroKind {
1219         self.builtin_macro_kinds.get(&def_id).copied().unwrap_or(MacroKind::Bang)
1220     }
1221 }
1222
1223 impl<'a> Resolver<'a> {
1224     pub fn new(
1225         session: &'a Session,
1226         krate: &Crate,
1227         crate_name: &str,
1228         metadata_loader: Box<MetadataLoaderDyn>,
1229         arenas: &'a ResolverArenas<'a>,
1230     ) -> Resolver<'a> {
1231         let root_def_id = CRATE_DEF_ID.to_def_id();
1232         let mut module_map = FxHashMap::default();
1233         let graph_root = arenas.new_module(
1234             None,
1235             ModuleKind::Def(DefKind::Mod, root_def_id, kw::Empty),
1236             ExpnId::root(),
1237             krate.spans.inner_span,
1238             session.contains_name(&krate.attrs, sym::no_implicit_prelude),
1239             &mut module_map,
1240         );
1241         let empty_module = arenas.new_module(
1242             None,
1243             ModuleKind::Def(DefKind::Mod, root_def_id, kw::Empty),
1244             ExpnId::root(),
1245             DUMMY_SP,
1246             true,
1247             &mut FxHashMap::default(),
1248         );
1249
1250         let definitions = Definitions::new(session.local_stable_crate_id(), krate.spans.inner_span);
1251
1252         let mut visibilities = FxHashMap::default();
1253         visibilities.insert(CRATE_DEF_ID, ty::Visibility::Public);
1254
1255         let mut def_id_to_node_id = IndexVec::default();
1256         assert_eq!(def_id_to_node_id.push(CRATE_NODE_ID), CRATE_DEF_ID);
1257         let mut node_id_to_def_id = FxHashMap::default();
1258         node_id_to_def_id.insert(CRATE_NODE_ID, CRATE_DEF_ID);
1259
1260         let mut invocation_parents = FxHashMap::default();
1261         invocation_parents.insert(LocalExpnId::ROOT, (CRATE_DEF_ID, ImplTraitContext::Existential));
1262
1263         let mut extern_prelude: FxHashMap<Ident, ExternPreludeEntry<'_>> = session
1264             .opts
1265             .externs
1266             .iter()
1267             .filter(|(_, entry)| entry.add_prelude)
1268             .map(|(name, _)| (Ident::from_str(name), Default::default()))
1269             .collect();
1270
1271         if !session.contains_name(&krate.attrs, sym::no_core) {
1272             extern_prelude.insert(Ident::with_dummy_span(sym::core), Default::default());
1273             if !session.contains_name(&krate.attrs, sym::no_std) {
1274                 extern_prelude.insert(Ident::with_dummy_span(sym::std), Default::default());
1275             }
1276         }
1277
1278         let (registered_attrs, registered_tools) =
1279             macros::registered_attrs_and_tools(session, &krate.attrs);
1280
1281         let features = session.features_untracked();
1282
1283         let mut resolver = Resolver {
1284             session,
1285
1286             definitions,
1287
1288             // The outermost module has def ID 0; this is not reflected in the
1289             // AST.
1290             graph_root,
1291             prelude: None,
1292             extern_prelude,
1293
1294             has_self: FxHashSet::default(),
1295             field_names: FxHashMap::default(),
1296
1297             determined_imports: Vec::new(),
1298             indeterminate_imports: Vec::new(),
1299
1300             pat_span_map: Default::default(),
1301             partial_res_map: Default::default(),
1302             import_res_map: Default::default(),
1303             label_res_map: Default::default(),
1304             extern_crate_map: Default::default(),
1305             reexport_map: FxHashMap::default(),
1306             trait_map: NodeMap::default(),
1307             underscore_disambiguator: 0,
1308             empty_module,
1309             module_map,
1310             block_map: Default::default(),
1311             binding_parent_modules: FxHashMap::default(),
1312             ast_transform_scopes: FxHashMap::default(),
1313
1314             glob_map: Default::default(),
1315             visibilities,
1316             used_imports: FxHashSet::default(),
1317             maybe_unused_trait_imports: Default::default(),
1318             maybe_unused_extern_crates: Vec::new(),
1319
1320             privacy_errors: Vec::new(),
1321             ambiguity_errors: Vec::new(),
1322             use_injections: Vec::new(),
1323             macro_expanded_macro_export_errors: BTreeSet::new(),
1324
1325             arenas,
1326             dummy_binding: arenas.alloc_name_binding(NameBinding {
1327                 kind: NameBindingKind::Res(Res::Err, false),
1328                 ambiguity: None,
1329                 expansion: LocalExpnId::ROOT,
1330                 span: DUMMY_SP,
1331                 vis: ty::Visibility::Public,
1332             }),
1333
1334             crate_loader: CrateLoader::new(session, metadata_loader, crate_name),
1335             macro_names: FxHashSet::default(),
1336             builtin_macros: Default::default(),
1337             builtin_macro_kinds: Default::default(),
1338             registered_attrs,
1339             registered_tools,
1340             macro_use_prelude: FxHashMap::default(),
1341             all_macro_rules: Default::default(),
1342             macro_map: FxHashMap::default(),
1343             dummy_ext_bang: Lrc::new(SyntaxExtension::dummy_bang(session.edition())),
1344             dummy_ext_derive: Lrc::new(SyntaxExtension::dummy_derive(session.edition())),
1345             non_macro_attr: Lrc::new(SyntaxExtension::non_macro_attr(session.edition())),
1346             invocation_parent_scopes: Default::default(),
1347             output_macro_rules_scopes: Default::default(),
1348             helper_attrs: Default::default(),
1349             derive_data: Default::default(),
1350             local_macro_def_scopes: FxHashMap::default(),
1351             name_already_seen: FxHashMap::default(),
1352             potentially_unused_imports: Vec::new(),
1353             struct_constructors: Default::default(),
1354             unused_macros: Default::default(),
1355             proc_macro_stubs: Default::default(),
1356             single_segment_macro_resolutions: Default::default(),
1357             multi_segment_macro_resolutions: Default::default(),
1358             builtin_attrs: Default::default(),
1359             containers_deriving_copy: Default::default(),
1360             active_features: features
1361                 .declared_lib_features
1362                 .iter()
1363                 .map(|(feat, ..)| *feat)
1364                 .chain(features.declared_lang_features.iter().map(|(feat, ..)| *feat))
1365                 .collect(),
1366             lint_buffer: LintBuffer::default(),
1367             next_node_id: CRATE_NODE_ID,
1368             node_id_to_def_id,
1369             def_id_to_node_id,
1370             placeholder_field_indices: Default::default(),
1371             invocation_parents,
1372             trait_impl_items: Default::default(),
1373             legacy_const_generic_args: Default::default(),
1374             item_generics_num_lifetimes: Default::default(),
1375             main_def: Default::default(),
1376             trait_impls: Default::default(),
1377             proc_macros: Default::default(),
1378             confused_type_with_std_module: Default::default(),
1379             access_levels: Default::default(),
1380         };
1381
1382         let root_parent_scope = ParentScope::module(graph_root, &resolver);
1383         resolver.invocation_parent_scopes.insert(LocalExpnId::ROOT, root_parent_scope);
1384
1385         resolver
1386     }
1387
1388     fn new_module(
1389         &mut self,
1390         parent: Option<Module<'a>>,
1391         kind: ModuleKind,
1392         expn_id: ExpnId,
1393         span: Span,
1394         no_implicit_prelude: bool,
1395     ) -> Module<'a> {
1396         let module_map = &mut self.module_map;
1397         self.arenas.new_module(parent, kind, expn_id, span, no_implicit_prelude, module_map)
1398     }
1399
1400     pub fn next_node_id(&mut self) -> NodeId {
1401         let start = self.next_node_id;
1402         let next = start.as_u32().checked_add(1).expect("input too large; ran out of NodeIds");
1403         self.next_node_id = ast::NodeId::from_u32(next);
1404         start
1405     }
1406
1407     pub fn next_node_ids(&mut self, count: usize) -> std::ops::Range<NodeId> {
1408         let start = self.next_node_id;
1409         let end = start.as_usize().checked_add(count).expect("input too large; ran out of NodeIds");
1410         self.next_node_id = ast::NodeId::from_usize(end);
1411         start..self.next_node_id
1412     }
1413
1414     pub fn lint_buffer(&mut self) -> &mut LintBuffer {
1415         &mut self.lint_buffer
1416     }
1417
1418     pub fn arenas() -> ResolverArenas<'a> {
1419         Default::default()
1420     }
1421
1422     pub fn into_outputs(self) -> ResolverOutputs {
1423         let proc_macros = self.proc_macros.iter().map(|id| self.local_def_id(*id)).collect();
1424         let definitions = self.definitions;
1425         let visibilities = self.visibilities;
1426         let extern_crate_map = self.extern_crate_map;
1427         let reexport_map = self.reexport_map;
1428         let maybe_unused_trait_imports = self.maybe_unused_trait_imports;
1429         let maybe_unused_extern_crates = self.maybe_unused_extern_crates;
1430         let glob_map = self.glob_map;
1431         let main_def = self.main_def;
1432         let confused_type_with_std_module = self.confused_type_with_std_module;
1433         let access_levels = self.access_levels;
1434         ResolverOutputs {
1435             definitions,
1436             cstore: Box::new(self.crate_loader.into_cstore()),
1437             visibilities,
1438             access_levels,
1439             extern_crate_map,
1440             reexport_map,
1441             glob_map,
1442             maybe_unused_trait_imports,
1443             maybe_unused_extern_crates,
1444             extern_prelude: self
1445                 .extern_prelude
1446                 .iter()
1447                 .map(|(ident, entry)| (ident.name, entry.introduced_by_item))
1448                 .collect(),
1449             main_def,
1450             trait_impls: self.trait_impls,
1451             proc_macros,
1452             confused_type_with_std_module,
1453             registered_tools: self.registered_tools,
1454         }
1455     }
1456
1457     pub fn clone_outputs(&self) -> ResolverOutputs {
1458         let proc_macros = self.proc_macros.iter().map(|id| self.local_def_id(*id)).collect();
1459         ResolverOutputs {
1460             definitions: self.definitions.clone(),
1461             access_levels: self.access_levels.clone(),
1462             cstore: Box::new(self.cstore().clone()),
1463             visibilities: self.visibilities.clone(),
1464             extern_crate_map: self.extern_crate_map.clone(),
1465             reexport_map: self.reexport_map.clone(),
1466             glob_map: self.glob_map.clone(),
1467             maybe_unused_trait_imports: self.maybe_unused_trait_imports.clone(),
1468             maybe_unused_extern_crates: self.maybe_unused_extern_crates.clone(),
1469             extern_prelude: self
1470                 .extern_prelude
1471                 .iter()
1472                 .map(|(ident, entry)| (ident.name, entry.introduced_by_item))
1473                 .collect(),
1474             main_def: self.main_def,
1475             trait_impls: self.trait_impls.clone(),
1476             proc_macros,
1477             confused_type_with_std_module: self.confused_type_with_std_module.clone(),
1478             registered_tools: self.registered_tools.clone(),
1479         }
1480     }
1481
1482     pub fn cstore(&self) -> &CStore {
1483         self.crate_loader.cstore()
1484     }
1485
1486     fn dummy_ext(&self, macro_kind: MacroKind) -> Lrc<SyntaxExtension> {
1487         match macro_kind {
1488             MacroKind::Bang => self.dummy_ext_bang.clone(),
1489             MacroKind::Derive => self.dummy_ext_derive.clone(),
1490             MacroKind::Attr => self.non_macro_attr.clone(),
1491         }
1492     }
1493
1494     /// Runs the function on each namespace.
1495     fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
1496         f(self, TypeNS);
1497         f(self, ValueNS);
1498         f(self, MacroNS);
1499     }
1500
1501     fn is_builtin_macro(&mut self, res: Res) -> bool {
1502         self.get_macro(res).map_or(false, |ext| ext.builtin_name.is_some())
1503     }
1504
1505     fn macro_def(&self, mut ctxt: SyntaxContext) -> DefId {
1506         loop {
1507             match ctxt.outer_expn_data().macro_def_id {
1508                 Some(def_id) => return def_id,
1509                 None => ctxt.remove_mark(),
1510             };
1511         }
1512     }
1513
1514     /// Entry point to crate resolution.
1515     pub fn resolve_crate(&mut self, krate: &Crate) {
1516         self.session.time("resolve_crate", || {
1517             self.session.time("finalize_imports", || ImportResolver { r: self }.finalize_imports());
1518             self.session.time("resolve_access_levels", || {
1519                 AccessLevelsVisitor::compute_access_levels(self, krate)
1520             });
1521             self.session.time("finalize_macro_resolutions", || self.finalize_macro_resolutions());
1522             self.session.time("late_resolve_crate", || self.late_resolve_crate(krate));
1523             self.session.time("resolve_main", || self.resolve_main());
1524             self.session.time("resolve_check_unused", || self.check_unused(krate));
1525             self.session.time("resolve_report_errors", || self.report_errors(krate));
1526             self.session.time("resolve_postprocess", || self.crate_loader.postprocess(krate));
1527         });
1528     }
1529
1530     pub fn traits_in_scope(
1531         &mut self,
1532         current_trait: Option<Module<'a>>,
1533         parent_scope: &ParentScope<'a>,
1534         ctxt: SyntaxContext,
1535         assoc_item: Option<(Symbol, Namespace)>,
1536     ) -> Vec<TraitCandidate> {
1537         let mut found_traits = Vec::new();
1538
1539         if let Some(module) = current_trait {
1540             if self.trait_may_have_item(Some(module), assoc_item) {
1541                 let def_id = module.def_id();
1542                 found_traits.push(TraitCandidate { def_id, import_ids: smallvec![] });
1543             }
1544         }
1545
1546         self.visit_scopes(ScopeSet::All(TypeNS, false), parent_scope, ctxt, |this, scope, _, _| {
1547             match scope {
1548                 Scope::Module(module, _) => {
1549                     this.traits_in_module(module, assoc_item, &mut found_traits);
1550                 }
1551                 Scope::StdLibPrelude => {
1552                     if let Some(module) = this.prelude {
1553                         this.traits_in_module(module, assoc_item, &mut found_traits);
1554                     }
1555                 }
1556                 Scope::ExternPrelude | Scope::ToolPrelude | Scope::BuiltinTypes => {}
1557                 _ => unreachable!(),
1558             }
1559             None::<()>
1560         });
1561
1562         found_traits
1563     }
1564
1565     fn traits_in_module(
1566         &mut self,
1567         module: Module<'a>,
1568         assoc_item: Option<(Symbol, Namespace)>,
1569         found_traits: &mut Vec<TraitCandidate>,
1570     ) {
1571         module.ensure_traits(self);
1572         let traits = module.traits.borrow();
1573         for (trait_name, trait_binding) in traits.as_ref().unwrap().iter() {
1574             if self.trait_may_have_item(trait_binding.module(), assoc_item) {
1575                 let def_id = trait_binding.res().def_id();
1576                 let import_ids = self.find_transitive_imports(&trait_binding.kind, *trait_name);
1577                 found_traits.push(TraitCandidate { def_id, import_ids });
1578             }
1579         }
1580     }
1581
1582     // List of traits in scope is pruned on best effort basis. We reject traits not having an
1583     // associated item with the given name and namespace (if specified). This is a conservative
1584     // optimization, proper hygienic type-based resolution of associated items is done in typeck.
1585     // We don't reject trait aliases (`trait_module == None`) because we don't have access to their
1586     // associated items.
1587     fn trait_may_have_item(
1588         &mut self,
1589         trait_module: Option<Module<'a>>,
1590         assoc_item: Option<(Symbol, Namespace)>,
1591     ) -> bool {
1592         match (trait_module, assoc_item) {
1593             (Some(trait_module), Some((name, ns))) => {
1594                 self.resolutions(trait_module).borrow().iter().any(|resolution| {
1595                     let (&BindingKey { ident: assoc_ident, ns: assoc_ns, .. }, _) = resolution;
1596                     assoc_ns == ns && assoc_ident.name == name
1597                 })
1598             }
1599             _ => true,
1600         }
1601     }
1602
1603     fn find_transitive_imports(
1604         &mut self,
1605         mut kind: &NameBindingKind<'_>,
1606         trait_name: Ident,
1607     ) -> SmallVec<[LocalDefId; 1]> {
1608         let mut import_ids = smallvec![];
1609         while let NameBindingKind::Import { import, binding, .. } = kind {
1610             let id = self.local_def_id(import.id);
1611             self.maybe_unused_trait_imports.insert(id);
1612             self.add_to_glob_map(&import, trait_name);
1613             import_ids.push(id);
1614             kind = &binding.kind;
1615         }
1616         import_ids
1617     }
1618
1619     fn new_key(&mut self, ident: Ident, ns: Namespace) -> BindingKey {
1620         let ident = ident.normalize_to_macros_2_0();
1621         let disambiguator = if ident.name == kw::Underscore {
1622             self.underscore_disambiguator += 1;
1623             self.underscore_disambiguator
1624         } else {
1625             0
1626         };
1627         BindingKey { ident, ns, disambiguator }
1628     }
1629
1630     fn resolutions(&mut self, module: Module<'a>) -> &'a Resolutions<'a> {
1631         if module.populate_on_access.get() {
1632             module.populate_on_access.set(false);
1633             self.build_reduced_graph_external(module);
1634         }
1635         &module.lazy_resolutions
1636     }
1637
1638     fn resolution(
1639         &mut self,
1640         module: Module<'a>,
1641         key: BindingKey,
1642     ) -> &'a RefCell<NameResolution<'a>> {
1643         *self
1644             .resolutions(module)
1645             .borrow_mut()
1646             .entry(key)
1647             .or_insert_with(|| self.arenas.alloc_name_resolution())
1648     }
1649
1650     fn record_use(
1651         &mut self,
1652         ident: Ident,
1653         used_binding: &'a NameBinding<'a>,
1654         is_lexical_scope: bool,
1655     ) {
1656         if let Some((b2, kind)) = used_binding.ambiguity {
1657             self.ambiguity_errors.push(AmbiguityError {
1658                 kind,
1659                 ident,
1660                 b1: used_binding,
1661                 b2,
1662                 misc1: AmbiguityErrorMisc::None,
1663                 misc2: AmbiguityErrorMisc::None,
1664             });
1665         }
1666         if let NameBindingKind::Import { import, binding, ref used } = used_binding.kind {
1667             // Avoid marking `extern crate` items that refer to a name from extern prelude,
1668             // but not introduce it, as used if they are accessed from lexical scope.
1669             if is_lexical_scope {
1670                 if let Some(entry) = self.extern_prelude.get(&ident.normalize_to_macros_2_0()) {
1671                     if let Some(crate_item) = entry.extern_crate_item {
1672                         if ptr::eq(used_binding, crate_item) && !entry.introduced_by_item {
1673                             return;
1674                         }
1675                     }
1676                 }
1677             }
1678             used.set(true);
1679             import.used.set(true);
1680             self.used_imports.insert(import.id);
1681             self.add_to_glob_map(&import, ident);
1682             self.record_use(ident, binding, false);
1683         }
1684     }
1685
1686     #[inline]
1687     fn add_to_glob_map(&mut self, import: &Import<'_>, ident: Ident) {
1688         if import.is_glob() {
1689             let def_id = self.local_def_id(import.id);
1690             self.glob_map.entry(def_id).or_default().insert(ident.name);
1691         }
1692     }
1693
1694     fn resolve_crate_root(&mut self, ident: Ident) -> Module<'a> {
1695         debug!("resolve_crate_root({:?})", ident);
1696         let mut ctxt = ident.span.ctxt();
1697         let mark = if ident.name == kw::DollarCrate {
1698             // When resolving `$crate` from a `macro_rules!` invoked in a `macro`,
1699             // we don't want to pretend that the `macro_rules!` definition is in the `macro`
1700             // as described in `SyntaxContext::apply_mark`, so we ignore prepended opaque marks.
1701             // FIXME: This is only a guess and it doesn't work correctly for `macro_rules!`
1702             // definitions actually produced by `macro` and `macro` definitions produced by
1703             // `macro_rules!`, but at least such configurations are not stable yet.
1704             ctxt = ctxt.normalize_to_macro_rules();
1705             debug!(
1706                 "resolve_crate_root: marks={:?}",
1707                 ctxt.marks().into_iter().map(|(i, t)| (i.expn_data(), t)).collect::<Vec<_>>()
1708             );
1709             let mut iter = ctxt.marks().into_iter().rev().peekable();
1710             let mut result = None;
1711             // Find the last opaque mark from the end if it exists.
1712             while let Some(&(mark, transparency)) = iter.peek() {
1713                 if transparency == Transparency::Opaque {
1714                     result = Some(mark);
1715                     iter.next();
1716                 } else {
1717                     break;
1718                 }
1719             }
1720             debug!(
1721                 "resolve_crate_root: found opaque mark {:?} {:?}",
1722                 result,
1723                 result.map(|r| r.expn_data())
1724             );
1725             // Then find the last semi-transparent mark from the end if it exists.
1726             for (mark, transparency) in iter {
1727                 if transparency == Transparency::SemiTransparent {
1728                     result = Some(mark);
1729                 } else {
1730                     break;
1731                 }
1732             }
1733             debug!(
1734                 "resolve_crate_root: found semi-transparent mark {:?} {:?}",
1735                 result,
1736                 result.map(|r| r.expn_data())
1737             );
1738             result
1739         } else {
1740             debug!("resolve_crate_root: not DollarCrate");
1741             ctxt = ctxt.normalize_to_macros_2_0();
1742             ctxt.adjust(ExpnId::root())
1743         };
1744         let module = match mark {
1745             Some(def) => self.expn_def_scope(def),
1746             None => {
1747                 debug!(
1748                     "resolve_crate_root({:?}): found no mark (ident.span = {:?})",
1749                     ident, ident.span
1750                 );
1751                 return self.graph_root;
1752             }
1753         };
1754         let module = self.expect_module(
1755             module.opt_def_id().map_or(LOCAL_CRATE, |def_id| def_id.krate).as_def_id(),
1756         );
1757         debug!(
1758             "resolve_crate_root({:?}): got module {:?} ({:?}) (ident.span = {:?})",
1759             ident,
1760             module,
1761             module.kind.name(),
1762             ident.span
1763         );
1764         module
1765     }
1766
1767     fn resolve_self(&mut self, ctxt: &mut SyntaxContext, module: Module<'a>) -> Module<'a> {
1768         let mut module = self.expect_module(module.nearest_parent_mod());
1769         while module.span.ctxt().normalize_to_macros_2_0() != *ctxt {
1770             let parent = module.parent.unwrap_or_else(|| self.expn_def_scope(ctxt.remove_mark()));
1771             module = self.expect_module(parent.nearest_parent_mod());
1772         }
1773         module
1774     }
1775
1776     fn record_partial_res(&mut self, node_id: NodeId, resolution: PartialRes) {
1777         debug!("(recording res) recording {:?} for {}", resolution, node_id);
1778         if let Some(prev_res) = self.partial_res_map.insert(node_id, resolution) {
1779             panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
1780         }
1781     }
1782
1783     fn record_pat_span(&mut self, node: NodeId, span: Span) {
1784         debug!("(recording pat) recording {:?} for {:?}", node, span);
1785         self.pat_span_map.insert(node, span);
1786     }
1787
1788     fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
1789         vis.is_accessible_from(module.nearest_parent_mod(), self)
1790     }
1791
1792     fn set_binding_parent_module(&mut self, binding: &'a NameBinding<'a>, module: Module<'a>) {
1793         if let Some(old_module) =
1794             self.binding_parent_modules.insert(Interned::new_unchecked(binding), module)
1795         {
1796             if !ptr::eq(module, old_module) {
1797                 span_bug!(binding.span, "parent module is reset for binding");
1798             }
1799         }
1800     }
1801
1802     fn disambiguate_macro_rules_vs_modularized(
1803         &self,
1804         macro_rules: &'a NameBinding<'a>,
1805         modularized: &'a NameBinding<'a>,
1806     ) -> bool {
1807         // Some non-controversial subset of ambiguities "modularized macro name" vs "macro_rules"
1808         // is disambiguated to mitigate regressions from macro modularization.
1809         // Scoping for `macro_rules` behaves like scoping for `let` at module level, in general.
1810         match (
1811             self.binding_parent_modules.get(&Interned::new_unchecked(macro_rules)),
1812             self.binding_parent_modules.get(&Interned::new_unchecked(modularized)),
1813         ) {
1814             (Some(macro_rules), Some(modularized)) => {
1815                 macro_rules.nearest_parent_mod() == modularized.nearest_parent_mod()
1816                     && modularized.is_ancestor_of(macro_rules)
1817             }
1818             _ => false,
1819         }
1820     }
1821
1822     fn extern_prelude_get(&mut self, ident: Ident, finalize: bool) -> Option<&'a NameBinding<'a>> {
1823         if ident.is_path_segment_keyword() {
1824             // Make sure `self`, `super` etc produce an error when passed to here.
1825             return None;
1826         }
1827         self.extern_prelude.get(&ident.normalize_to_macros_2_0()).cloned().and_then(|entry| {
1828             if let Some(binding) = entry.extern_crate_item {
1829                 if finalize && entry.introduced_by_item {
1830                     self.record_use(ident, binding, false);
1831                 }
1832                 Some(binding)
1833             } else {
1834                 let crate_id = if finalize {
1835                     let Some(crate_id) =
1836                         self.crate_loader.process_path_extern(ident.name, ident.span) else { return Some(self.dummy_binding); };
1837                     crate_id
1838                 } else {
1839                     self.crate_loader.maybe_process_path_extern(ident.name)?
1840                 };
1841                 let crate_root = self.expect_module(crate_id.as_def_id());
1842                 Some(
1843                     (crate_root, ty::Visibility::Public, DUMMY_SP, LocalExpnId::ROOT)
1844                         .to_name_binding(self.arenas),
1845                 )
1846             }
1847         })
1848     }
1849
1850     /// Rustdoc uses this to resolve doc link paths in a recoverable way. `PathResult<'a>`
1851     /// isn't something that can be returned because it can't be made to live that long,
1852     /// and also it's a private type. Fortunately rustdoc doesn't need to know the error,
1853     /// just that an error occurred.
1854     pub fn resolve_rustdoc_path(
1855         &mut self,
1856         path_str: &str,
1857         ns: Namespace,
1858         mut module_id: DefId,
1859     ) -> Option<Res> {
1860         let mut segments =
1861             Vec::from_iter(path_str.split("::").map(Ident::from_str).map(Segment::from_ident));
1862         if let Some(segment) = segments.first_mut() {
1863             if segment.ident.name == kw::Crate {
1864                 // FIXME: `resolve_path` always resolves `crate` to the current crate root, but
1865                 // rustdoc wants it to resolve to the `module_id`'s crate root. This trick of
1866                 // replacing `crate` with `self` and changing the current module should achieve
1867                 // the same effect.
1868                 segment.ident.name = kw::SelfLower;
1869                 module_id = module_id.krate.as_def_id();
1870             } else if segment.ident.name == kw::Empty {
1871                 segment.ident.name = kw::PathRoot;
1872             }
1873         }
1874
1875         let module = self.expect_module(module_id);
1876         match self.maybe_resolve_path(&segments, Some(ns), &ParentScope::module(module, self)) {
1877             PathResult::Module(ModuleOrUniformRoot::Module(module)) => Some(module.res().unwrap()),
1878             PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 => {
1879                 Some(path_res.base_res())
1880             }
1881             PathResult::Module(ModuleOrUniformRoot::ExternPrelude)
1882             | PathResult::NonModule(..)
1883             | PathResult::Failed { .. } => None,
1884             PathResult::Module(..) | PathResult::Indeterminate => unreachable!(),
1885         }
1886     }
1887
1888     // For rustdoc.
1889     pub fn graph_root(&self) -> Module<'a> {
1890         self.graph_root
1891     }
1892
1893     // For rustdoc.
1894     pub fn take_all_macro_rules(&mut self) -> FxHashMap<Symbol, Res> {
1895         mem::take(&mut self.all_macro_rules)
1896     }
1897
1898     /// For rustdoc.
1899     /// For local modules returns only reexports, for external modules returns all children.
1900     pub fn module_children_or_reexports(&self, def_id: DefId) -> Vec<ModChild> {
1901         if let Some(def_id) = def_id.as_local() {
1902             self.reexport_map.get(&def_id).cloned().unwrap_or_default()
1903         } else {
1904             self.cstore().module_children_untracked(def_id, self.session)
1905         }
1906     }
1907
1908     /// Retrieves the span of the given `DefId` if `DefId` is in the local crate.
1909     #[inline]
1910     pub fn opt_span(&self, def_id: DefId) -> Option<Span> {
1911         def_id.as_local().map(|def_id| self.definitions.def_span(def_id))
1912     }
1913
1914     /// Checks if an expression refers to a function marked with
1915     /// `#[rustc_legacy_const_generics]` and returns the argument index list
1916     /// from the attribute.
1917     pub fn legacy_const_generic_args(&mut self, expr: &Expr) -> Option<Vec<usize>> {
1918         if let ExprKind::Path(None, path) = &expr.kind {
1919             // Don't perform legacy const generics rewriting if the path already
1920             // has generic arguments.
1921             if path.segments.last().unwrap().args.is_some() {
1922                 return None;
1923             }
1924
1925             let partial_res = self.partial_res_map.get(&expr.id)?;
1926             if partial_res.unresolved_segments() != 0 {
1927                 return None;
1928             }
1929
1930             if let Res::Def(def::DefKind::Fn, def_id) = partial_res.base_res() {
1931                 // We only support cross-crate argument rewriting. Uses
1932                 // within the same crate should be updated to use the new
1933                 // const generics style.
1934                 if def_id.is_local() {
1935                     return None;
1936                 }
1937
1938                 if let Some(v) = self.legacy_const_generic_args.get(&def_id) {
1939                     return v.clone();
1940                 }
1941
1942                 let attr = self
1943                     .cstore()
1944                     .item_attrs_untracked(def_id, self.session)
1945                     .find(|a| a.has_name(sym::rustc_legacy_const_generics))?;
1946                 let mut ret = Vec::new();
1947                 for meta in attr.meta_item_list()? {
1948                     match meta.literal()?.kind {
1949                         LitKind::Int(a, _) => ret.push(a as usize),
1950                         _ => panic!("invalid arg index"),
1951                     }
1952                 }
1953                 // Cache the lookup to avoid parsing attributes for an iterm multiple times.
1954                 self.legacy_const_generic_args.insert(def_id, Some(ret.clone()));
1955                 return Some(ret);
1956             }
1957         }
1958         None
1959     }
1960
1961     fn resolve_main(&mut self) {
1962         let module = self.graph_root;
1963         let ident = Ident::with_dummy_span(sym::main);
1964         let parent_scope = &ParentScope::module(module, self);
1965
1966         let Ok(name_binding) = self.maybe_resolve_ident_in_module(
1967             ModuleOrUniformRoot::Module(module),
1968             ident,
1969             ValueNS,
1970             parent_scope,
1971         ) else {
1972             return;
1973         };
1974
1975         let res = name_binding.res();
1976         let is_import = name_binding.is_import();
1977         let span = name_binding.span;
1978         if let Res::Def(DefKind::Fn, _) = res {
1979             self.record_use(ident, name_binding, false);
1980         }
1981         self.main_def = Some(MainDefinition { res, is_import, span });
1982     }
1983 }
1984
1985 fn names_to_string(names: &[Symbol]) -> String {
1986     let mut result = String::new();
1987     for (i, name) in names.iter().filter(|name| **name != kw::PathRoot).enumerate() {
1988         if i > 0 {
1989             result.push_str("::");
1990         }
1991         if Ident::with_dummy_span(*name).is_raw_guess() {
1992             result.push_str("r#");
1993         }
1994         result.push_str(name.as_str());
1995     }
1996     result
1997 }
1998
1999 fn path_names_to_string(path: &Path) -> String {
2000     names_to_string(&path.segments.iter().map(|seg| seg.ident.name).collect::<Vec<_>>())
2001 }
2002
2003 /// A somewhat inefficient routine to obtain the name of a module.
2004 fn module_to_string(module: Module<'_>) -> Option<String> {
2005     let mut names = Vec::new();
2006
2007     fn collect_mod(names: &mut Vec<Symbol>, module: Module<'_>) {
2008         if let ModuleKind::Def(.., name) = module.kind {
2009             if let Some(parent) = module.parent {
2010                 names.push(name);
2011                 collect_mod(names, parent);
2012             }
2013         } else {
2014             names.push(Symbol::intern("<opaque>"));
2015             collect_mod(names, module.parent.unwrap());
2016         }
2017     }
2018     collect_mod(&mut names, module);
2019
2020     if names.is_empty() {
2021         return None;
2022     }
2023     names.reverse();
2024     Some(names_to_string(&names))
2025 }
2026
2027 #[derive(Copy, Clone, Debug)]
2028 enum Finalize {
2029     /// Do not issue the lint.
2030     No,
2031
2032     /// This lint applies to some arbitrary path; e.g., `impl ::foo::Bar`.
2033     /// In this case, we can take the span of that path.
2034     SimplePath(NodeId, Span),
2035
2036     /// This lint comes from a `use` statement. In this case, what we
2037     /// care about really is the *root* `use` statement; e.g., if we
2038     /// have nested things like `use a::{b, c}`, we care about the
2039     /// `use a` part.
2040     UsePath { root_id: NodeId, root_span: Span, path_span: Span },
2041
2042     /// This is the "trait item" from a fully qualified path. For example,
2043     /// we might be resolving  `X::Y::Z` from a path like `<T as X::Y>::Z`.
2044     /// The `path_span` is the span of the to the trait itself (`X::Y`).
2045     QPathTrait { qpath_id: NodeId, qpath_span: Span, path_span: Span },
2046 }
2047
2048 impl Finalize {
2049     fn node_id_and_path_span(&self) -> Option<(NodeId, Span)> {
2050         match *self {
2051             Finalize::No => None,
2052             Finalize::SimplePath(id, path_span)
2053             | Finalize::UsePath { root_id: id, path_span, .. }
2054             | Finalize::QPathTrait { qpath_id: id, path_span, .. } => Some((id, path_span)),
2055         }
2056     }
2057
2058     fn node_id(&self) -> Option<NodeId> {
2059         self.node_id_and_path_span().map(|(id, _)| id)
2060     }
2061
2062     fn path_span(&self) -> Option<Span> {
2063         self.node_id_and_path_span().map(|(_, path_span)| path_span)
2064     }
2065 }
2066
2067 pub fn provide(providers: &mut Providers) {
2068     late::lifetimes::provide(providers);
2069 }