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