1#![allow(internal_features)]
11#![feature(arbitrary_self_types)]
12#![feature(const_default)]
13#![feature(const_trait_impl)]
14#![feature(control_flow_into_value)]
15#![feature(default_field_values)]
16#![feature(deref_patterns)]
17#![feature(iter_intersperse)]
18#![feature(option_into_flat_iter)]
19#![feature(rustc_attrs)]
20#![feature(trim_prefix_suffix)]
21#![recursion_limit = "256"]
22use std::cell::Ref;
25use std::collections::BTreeSet;
26use std::ops::ControlFlow;
27use std::sync::{Arc, Once};
28use std::{fmt, mem};
29
30use diagnostics::{ParamKindInEnumDiscriminant, ParamKindInNonTrivialAnonConst};
31use effective_visibilities::EffectiveVisibilitiesVisitor;
32use hygiene::Macros20NormalizedSyntaxContext;
33use imports::{Import, ImportData, ImportKind, NameResolution, PendingDecl};
34use late::{
35 ForwardGenericParamBanReason, HasGenericParams, PathSource, PatternSource,
36 UnnecessaryQualification,
37};
38pub use macros::registered_tools_ast;
39use macros::{MacroRulesDecl, MacroRulesScope, MacroRulesScopeRef};
40use rustc_arena::{DroplessArena, TypedArena};
41use rustc_ast::node_id::NodeMap;
42use rustc_ast::{
43 self as ast, AngleBracketedArg, CRATE_NODE_ID, Crate, DUMMY_NODE_ID, Expr, ExprKind,
44 GenericArg, GenericArgs, Generics, NodeId, Path, attr,
45};
46use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexMap, FxIndexSet, default};
47use rustc_data_structures::intern::Interned;
48use rustc_data_structures::steal::Steal;
49use rustc_data_structures::sync::{FreezeReadGuard, FreezeWriteGuard, WorkerLocal};
50use rustc_data_structures::unord::{UnordItems, UnordMap, UnordSet};
51use rustc_errors::{Applicability, Diag, ErrCode, ErrorGuaranteed, LintBuffer};
52use rustc_expand::base::{DeriveResolution, SyntaxExtension, SyntaxExtensionKind};
53use rustc_feature::{BUILTIN_ATTRIBUTES, Features};
54use rustc_hir::attrs::StrippedCfgItem;
55use rustc_hir::def::Namespace::{self, *};
56use rustc_hir::def::{
57 self, CtorOf, DefKind, DocLinkResMap, MacroKinds, NonMacroAttrKind, PartialRes, PerNS,
58};
59use rustc_hir::def_id::{CRATE_DEF_ID, CrateNum, DefId, LOCAL_CRATE, LocalDefId, LocalDefIdMap};
60use rustc_hir::definitions::{PerParentDisambiguatorState, PerParentDisambiguatorsMap};
61use rustc_hir::{PrimTy, TraitCandidate, find_attr};
62use rustc_index::bit_set::DenseBitSet;
63use rustc_metadata::creader::CStore;
64use rustc_middle::metadata::{AmbigModChild, ModChild, Reexport};
65use rustc_middle::middle::privacy::EffectiveVisibilities;
66use rustc_middle::query::Providers;
67use rustc_middle::ty::{
68 self, DelegationInfo, MainDefinition, PerOwnerResolverData, RegisteredTools,
69 ResolverAstLowering, ResolverGlobalCtxt, TyCtxt, TyCtxtFeed, Visibility,
70};
71use rustc_middle::{bug, span_bug};
72use rustc_session::config::CrateType;
73use rustc_session::lint::builtin::PRIVATE_MACRO_USE;
74use rustc_span::def_id::{LocalModId, ModId};
75use rustc_span::hygiene::{ExpnId, LocalExpnId, MacroKind, SyntaxContext, Transparency};
76use rustc_span::{DUMMY_SP, Ident, Span, Symbol, kw, sym};
77use smallvec::{SmallVec, smallvec};
78use tracing::{debug, instrument};
79
80use crate::diagnostics::impls::{
81 ImportSuggestion, LabelSuggestion, OnUnknownData, StructCtor, Suggestion,
82};
83use crate::imports::{ImportResolution, NameResolutionRef};
84use crate::ref_mut::{CmCell, CmRefCell};
85
86mod build_reduced_graph;
87mod check_unused;
88mod def_collector;
89mod diagnostics;
90mod effective_visibilities;
91mod ident;
92mod imports;
93mod late;
94mod macros;
95pub mod rustdoc;
96
97type Res = def::Res<NodeId>;
98
99#[derive(#[automatically_derived]
impl ::core::marker::Copy for Determinacy { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Determinacy {
#[inline]
fn clone(&self) -> Determinacy { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for Determinacy {
#[inline]
fn eq(&self, other: &Determinacy) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for Determinacy {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
Determinacy::Determined => "Determined",
Determinacy::Undetermined => "Undetermined",
})
}
}Debug)]
100enum Determinacy {
101 Determined,
102 Undetermined,
103}
104
105impl Determinacy {
106 fn determined(determined: bool) -> Determinacy {
107 if determined { Determinacy::Determined } else { Determinacy::Undetermined }
108 }
109}
110
111#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for Scope<'ra> {
#[inline]
fn clone(&self) -> Scope<'ra> {
let _: ::core::clone::AssertParamIsClone<LocalExpnId>;
let _: ::core::clone::AssertParamIsClone<MacroRulesScopeRef<'ra>>;
let _: ::core::clone::AssertParamIsClone<Module<'ra>>;
let _: ::core::clone::AssertParamIsClone<Option<NodeId>>;
let _: ::core::clone::AssertParamIsClone<Module<'ra>>;
let _: ::core::clone::AssertParamIsClone<Option<NodeId>>;
*self
}
}Clone, #[automatically_derived]
impl<'ra> ::core::marker::Copy for Scope<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::fmt::Debug for Scope<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Scope::DeriveHelpers(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"DeriveHelpers", &__self_0),
Scope::DeriveHelpersCompat =>
::core::fmt::Formatter::write_str(f, "DeriveHelpersCompat"),
Scope::MacroRules(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"MacroRules", &__self_0),
Scope::ModuleNonGlobs(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"ModuleNonGlobs", __self_0, &__self_1),
Scope::ModuleGlobs(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"ModuleGlobs", __self_0, &__self_1),
Scope::MacroUsePrelude =>
::core::fmt::Formatter::write_str(f, "MacroUsePrelude"),
Scope::BuiltinAttrs =>
::core::fmt::Formatter::write_str(f, "BuiltinAttrs"),
Scope::ExternPreludeItems =>
::core::fmt::Formatter::write_str(f, "ExternPreludeItems"),
Scope::ExternPreludeFlags =>
::core::fmt::Formatter::write_str(f, "ExternPreludeFlags"),
Scope::ToolPrelude =>
::core::fmt::Formatter::write_str(f, "ToolPrelude"),
Scope::StdLibPrelude =>
::core::fmt::Formatter::write_str(f, "StdLibPrelude"),
Scope::BuiltinTypes =>
::core::fmt::Formatter::write_str(f, "BuiltinTypes"),
}
}
}Debug)]
113enum Scope<'ra> {
114 DeriveHelpers(LocalExpnId),
116 DeriveHelpersCompat,
120 MacroRules(MacroRulesScopeRef<'ra>),
122 ModuleNonGlobs(Module<'ra>, Option<NodeId>),
126 ModuleGlobs(Module<'ra>, Option<NodeId>),
130 MacroUsePrelude,
132 BuiltinAttrs,
134 ExternPreludeItems,
136 ExternPreludeFlags,
138 ToolPrelude,
140 StdLibPrelude,
142 BuiltinTypes,
144}
145
146#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for ScopeSet<'ra> {
#[inline]
fn clone(&self) -> ScopeSet<'ra> {
let _: ::core::clone::AssertParamIsClone<Namespace>;
let _: ::core::clone::AssertParamIsClone<Module<'ra>>;
let _: ::core::clone::AssertParamIsClone<Module<'ra>>;
let _: ::core::clone::AssertParamIsClone<MacroKind>;
*self
}
}Clone, #[automatically_derived]
impl<'ra> ::core::marker::Copy for ScopeSet<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::fmt::Debug for ScopeSet<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
ScopeSet::All(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "All",
&__self_0),
ScopeSet::Module(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f, "Module",
__self_0, &__self_1),
ScopeSet::ModuleAndExternPrelude(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"ModuleAndExternPrelude", __self_0, &__self_1),
ScopeSet::ExternPrelude =>
::core::fmt::Formatter::write_str(f, "ExternPrelude"),
ScopeSet::Macro(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Macro",
&__self_0),
}
}
}Debug)]
149enum ScopeSet<'ra> {
150 All(Namespace),
152 Module(Namespace, Module<'ra>),
154 ModuleAndExternPrelude(Namespace, Module<'ra>),
156 ExternPrelude,
158 Macro(MacroKind),
160}
161
162#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for ParentScope<'ra> {
#[inline]
fn clone(&self) -> ParentScope<'ra> {
let _: ::core::clone::AssertParamIsClone<Module<'ra>>;
let _: ::core::clone::AssertParamIsClone<LocalExpnId>;
let _: ::core::clone::AssertParamIsClone<MacroRulesScopeRef<'ra>>;
let _: ::core::clone::AssertParamIsClone<&'ra [ast::Path]>;
*self
}
}Clone, #[automatically_derived]
impl<'ra> ::core::marker::Copy for ParentScope<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::fmt::Debug for ParentScope<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field4_finish(f, "ParentScope",
"module", &self.module, "expansion", &self.expansion,
"macro_rules", &self.macro_rules, "derives", &&self.derives)
}
}Debug)]
167struct ParentScope<'ra> {
168 module: Module<'ra>,
169 expansion: LocalExpnId,
170 macro_rules: MacroRulesScopeRef<'ra>,
171 derives: &'ra [ast::Path],
172}
173
174impl<'ra> ParentScope<'ra> {
175 fn module(module: LocalModule<'ra>, arenas: &'ra ResolverArenas<'ra>) -> ParentScope<'ra> {
178 ParentScope {
179 module: module.to_module(),
180 expansion: LocalExpnId::ROOT,
181 macro_rules: arenas.alloc_macro_rules_scope(MacroRulesScope::Empty),
182 derives: &[],
183 }
184 }
185}
186
187#[derive(#[automatically_derived]
impl ::core::marker::Copy for InvocationParent { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for InvocationParent {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field4_finish(f,
"InvocationParent", "parent_def", &self.parent_def,
"impl_trait_context", &self.impl_trait_context, "in_attr",
&self.in_attr, "owner", &&self.owner)
}
}Debug, #[automatically_derived]
impl ::core::clone::Clone for InvocationParent {
#[inline]
fn clone(&self) -> InvocationParent {
let _: ::core::clone::AssertParamIsClone<LocalDefId>;
let _: ::core::clone::AssertParamIsClone<ImplTraitContext>;
let _: ::core::clone::AssertParamIsClone<bool>;
let _: ::core::clone::AssertParamIsClone<NodeId>;
*self
}
}Clone)]
188struct InvocationParent {
189 parent_def: LocalDefId,
190 impl_trait_context: ImplTraitContext,
191 in_attr: bool,
192 owner: NodeId,
193}
194
195impl InvocationParent {
196 const ROOT: Self = Self {
197 parent_def: CRATE_DEF_ID,
198 impl_trait_context: ImplTraitContext::Existential,
199 in_attr: false,
200 owner: CRATE_NODE_ID,
201 };
202}
203
204#[derive(#[automatically_derived]
impl ::core::marker::Copy for ImplTraitContext { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for ImplTraitContext {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
ImplTraitContext::Existential => "Existential",
ImplTraitContext::Universal => "Universal",
ImplTraitContext::InBinding => "InBinding",
})
}
}Debug, #[automatically_derived]
impl ::core::clone::Clone for ImplTraitContext {
#[inline]
fn clone(&self) -> ImplTraitContext { *self }
}Clone)]
205enum ImplTraitContext {
206 Existential,
207 Universal,
208 InBinding,
209}
210
211#[derive(#[automatically_derived]
impl ::core::clone::Clone for Used {
#[inline]
fn clone(&self) -> Used { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for Used { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for Used {
#[inline]
fn eq(&self, other: &Used) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::PartialOrd for Used {
#[inline]
fn partial_cmp(&self, other: &Used)
-> ::core::option::Option<::core::cmp::Ordering> {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
::core::cmp::PartialOrd::partial_cmp(&__self_discr, &__arg1_discr)
}
}PartialOrd, #[automatically_derived]
impl ::core::fmt::Debug for Used {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self { Used::Scope => "Scope", Used::Other => "Other", })
}
}Debug)]
226enum Used {
227 Scope,
228 Other,
229}
230
231#[derive(#[automatically_derived]
impl ::core::fmt::Debug for BindingError {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field4_finish(f, "BindingError",
"name", &self.name, "origin", &self.origin, "target",
&self.target, "could_be_path", &&self.could_be_path)
}
}Debug)]
232struct BindingError {
233 name: Ident,
234 origin: Vec<(Span, ast::Pat)>,
235 target: Vec<ast::Pat>,
236 could_be_path: bool,
237}
238
239#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for ResolutionError<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
ResolutionError::GenericParamsFromOuterItem {
outer_res: __self_0,
has_generic_params: __self_1,
def_kind: __self_2,
inner_item: __self_3,
current_self_ty: __self_4 } =>
::core::fmt::Formatter::debug_struct_field5_finish(f,
"GenericParamsFromOuterItem", "outer_res", __self_0,
"has_generic_params", __self_1, "def_kind", __self_2,
"inner_item", __self_3, "current_self_ty", &__self_4),
ResolutionError::NameAlreadyUsedInParameterList(__self_0,
__self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"NameAlreadyUsedInParameterList", __self_0, &__self_1),
ResolutionError::MethodNotMemberOfTrait(__self_0, __self_1,
__self_2) =>
::core::fmt::Formatter::debug_tuple_field3_finish(f,
"MethodNotMemberOfTrait", __self_0, __self_1, &__self_2),
ResolutionError::TypeNotMemberOfTrait(__self_0, __self_1,
__self_2) =>
::core::fmt::Formatter::debug_tuple_field3_finish(f,
"TypeNotMemberOfTrait", __self_0, __self_1, &__self_2),
ResolutionError::ConstNotMemberOfTrait(__self_0, __self_1,
__self_2) =>
::core::fmt::Formatter::debug_tuple_field3_finish(f,
"ConstNotMemberOfTrait", __self_0, __self_1, &__self_2),
ResolutionError::VariableNotBoundInPattern(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"VariableNotBoundInPattern", __self_0, &__self_1),
ResolutionError::VariableBoundWithDifferentMode(__self_0,
__self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"VariableBoundWithDifferentMode", __self_0, &__self_1),
ResolutionError::IdentifierBoundMoreThanOnceInParameterList(__self_0)
=>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"IdentifierBoundMoreThanOnceInParameterList", &__self_0),
ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(__self_0)
=>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"IdentifierBoundMoreThanOnceInSamePattern", &__self_0),
ResolutionError::UndeclaredLabel {
name: __self_0, suggestion: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"UndeclaredLabel", "name", __self_0, "suggestion",
&__self_1),
ResolutionError::FailedToResolve {
segment: __self_0,
label: __self_1,
suggestion: __self_2,
module: __self_3,
message: __self_4 } =>
::core::fmt::Formatter::debug_struct_field5_finish(f,
"FailedToResolve", "segment", __self_0, "label", __self_1,
"suggestion", __self_2, "module", __self_3, "message",
&__self_4),
ResolutionError::CannotCaptureDynamicEnvironmentInFnItem =>
::core::fmt::Formatter::write_str(f,
"CannotCaptureDynamicEnvironmentInFnItem"),
ResolutionError::AttemptToUseNonConstantValueInConstant {
ident: __self_0,
suggestion: __self_1,
current: __self_2,
type_span: __self_3 } =>
::core::fmt::Formatter::debug_struct_field4_finish(f,
"AttemptToUseNonConstantValueInConstant", "ident", __self_0,
"suggestion", __self_1, "current", __self_2, "type_span",
&__self_3),
ResolutionError::BindingShadowsSomethingUnacceptable {
shadowing_binding: __self_0,
name: __self_1,
participle: __self_2,
article: __self_3,
shadowed_binding: __self_4,
shadowed_binding_span: __self_5 } => {
let names: &'static _ =
&["shadowing_binding", "name", "participle", "article",
"shadowed_binding", "shadowed_binding_span"];
let values: &[&dyn ::core::fmt::Debug] =
&[__self_0, __self_1, __self_2, __self_3, __self_4,
&__self_5];
::core::fmt::Formatter::debug_struct_fields_finish(f,
"BindingShadowsSomethingUnacceptable", names, values)
}
ResolutionError::ForwardDeclaredGenericParam(__self_0, __self_1)
=>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"ForwardDeclaredGenericParam", __self_0, &__self_1),
ResolutionError::ParamInTyOfConstParam { name: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"ParamInTyOfConstParam", "name", &__self_0),
ResolutionError::ParamInNonTrivialAnonConst {
is_gca: __self_0, name: __self_1, param_kind: __self_2 } =>
::core::fmt::Formatter::debug_struct_field3_finish(f,
"ParamInNonTrivialAnonConst", "is_gca", __self_0, "name",
__self_1, "param_kind", &__self_2),
ResolutionError::ParamInEnumDiscriminant {
name: __self_0, param_kind: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"ParamInEnumDiscriminant", "name", __self_0, "param_kind",
&__self_1),
ResolutionError::ForwardDeclaredSelf(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"ForwardDeclaredSelf", &__self_0),
ResolutionError::UnreachableLabel {
name: __self_0,
definition_span: __self_1,
suggestion: __self_2 } =>
::core::fmt::Formatter::debug_struct_field3_finish(f,
"UnreachableLabel", "name", __self_0, "definition_span",
__self_1, "suggestion", &__self_2),
ResolutionError::TraitImplMismatch {
name: __self_0,
kind: __self_1,
trait_path: __self_2,
trait_item_span: __self_3,
code: __self_4 } =>
::core::fmt::Formatter::debug_struct_field5_finish(f,
"TraitImplMismatch", "name", __self_0, "kind", __self_1,
"trait_path", __self_2, "trait_item_span", __self_3, "code",
&__self_4),
ResolutionError::TraitImplDuplicate {
name: __self_0, trait_item_span: __self_1, old_span: __self_2
} =>
::core::fmt::Formatter::debug_struct_field3_finish(f,
"TraitImplDuplicate", "name", __self_0, "trait_item_span",
__self_1, "old_span", &__self_2),
ResolutionError::InvalidAsmSym =>
::core::fmt::Formatter::write_str(f, "InvalidAsmSym"),
ResolutionError::LowercaseSelf =>
::core::fmt::Formatter::write_str(f, "LowercaseSelf"),
ResolutionError::BindingInNeverPattern =>
::core::fmt::Formatter::write_str(f, "BindingInNeverPattern"),
}
}
}Debug)]
240enum ResolutionError<'ra> {
241 GenericParamsFromOuterItem {
243 outer_res: Res,
244 has_generic_params: HasGenericParams,
245 def_kind: DefKind,
246 inner_item: Option<(Span, Span, ast::ItemKind)>,
248 current_self_ty: Option<String>,
249 },
250 NameAlreadyUsedInParameterList(Ident, Span),
253 MethodNotMemberOfTrait(Ident, String, Option<Symbol>),
255 TypeNotMemberOfTrait(Ident, String, Option<Symbol>),
257 ConstNotMemberOfTrait(Ident, String, Option<Symbol>),
259 VariableNotBoundInPattern(BindingError, ParentScope<'ra>),
261 VariableBoundWithDifferentMode(Ident, Span),
263 IdentifierBoundMoreThanOnceInParameterList(Ident),
265 IdentifierBoundMoreThanOnceInSamePattern(Ident),
267 UndeclaredLabel { name: Symbol, suggestion: Option<LabelSuggestion> },
269 FailedToResolve {
271 segment: Symbol,
272 label: String,
273 suggestion: Option<Suggestion>,
274 module: Option<ModuleOrUniformRoot<'ra>>,
275 message: String,
276 },
277 CannotCaptureDynamicEnvironmentInFnItem,
279 AttemptToUseNonConstantValueInConstant {
281 ident: Ident,
282 suggestion: &'static str,
283 current: &'static str,
284 type_span: Option<Span>,
285 },
286 BindingShadowsSomethingUnacceptable {
288 shadowing_binding: PatternSource,
289 name: Symbol,
290 participle: &'static str,
291 article: &'static str,
292 shadowed_binding: Res,
293 shadowed_binding_span: Span,
294 },
295 ForwardDeclaredGenericParam(Symbol, ForwardGenericParamBanReason),
297 ParamInTyOfConstParam { name: Symbol },
301 ParamInNonTrivialAnonConst {
305 is_gca: bool,
306 name: Symbol,
307 param_kind: ParamKindInNonTrivialAnonConst,
308 },
309 ParamInEnumDiscriminant { name: Symbol, param_kind: ParamKindInEnumDiscriminant },
313 ForwardDeclaredSelf(ForwardGenericParamBanReason),
315 UnreachableLabel { name: Symbol, definition_span: Span, suggestion: Option<LabelSuggestion> },
317 TraitImplMismatch {
319 name: Ident,
320 kind: &'static str,
321 trait_path: String,
322 trait_item_span: Span,
323 code: ErrCode,
324 },
325 TraitImplDuplicate { name: Ident, trait_item_span: Span, old_span: Span },
327 InvalidAsmSym,
329 LowercaseSelf,
331 BindingInNeverPattern,
333}
334
335#[derive(#[automatically_derived]
impl ::core::fmt::Debug for VisResolutionError {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
VisResolutionError::Relative2018(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f,
"Relative2018", __self_0, &__self_1),
VisResolutionError::AncestorOnly(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"AncestorOnly", &__self_0),
VisResolutionError::FailedToResolve(__self_0, __self_1, __self_2,
__self_3, __self_4) =>
::core::fmt::Formatter::debug_tuple_field5_finish(f,
"FailedToResolve", __self_0, __self_1, __self_2, __self_3,
&__self_4),
VisResolutionError::ExpectedFound(__self_0, __self_1, __self_2) =>
::core::fmt::Formatter::debug_tuple_field3_finish(f,
"ExpectedFound", __self_0, __self_1, &__self_2),
VisResolutionError::Indeterminate(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"Indeterminate", &__self_0),
VisResolutionError::ModuleOnly(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"ModuleOnly", &__self_0),
}
}
}Debug)]
336enum VisResolutionError {
337 Relative2018(Span, ast::Path),
338 AncestorOnly(Span),
339 FailedToResolve(Span, Symbol, String, Option<Suggestion>, String),
340 ExpectedFound(Span, String, Res),
341 Indeterminate(Span),
342 ModuleOnly(Span),
343}
344
345#[derive(#[automatically_derived]
impl ::core::clone::Clone for Segment {
#[inline]
fn clone(&self) -> Segment {
let _: ::core::clone::AssertParamIsClone<Ident>;
let _: ::core::clone::AssertParamIsClone<Option<NodeId>>;
let _: ::core::clone::AssertParamIsClone<bool>;
let _: ::core::clone::AssertParamIsClone<Span>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for Segment { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for Segment {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field5_finish(f, "Segment",
"ident", &self.ident, "id", &self.id, "has_generic_args",
&self.has_generic_args, "has_lifetime_args",
&self.has_lifetime_args, "args_span", &&self.args_span)
}
}Debug)]
348struct Segment {
349 ident: Ident,
350 id: Option<NodeId>,
351 has_generic_args: bool,
353 has_lifetime_args: bool,
355 args_span: Span,
356}
357
358impl Segment {
359 fn from_path(path: &Path) -> Vec<Segment> {
360 path.segments.iter().map(|s| s.into()).collect()
361 }
362
363 fn from_ident(ident: Ident) -> Segment {
364 Segment {
365 ident,
366 id: None,
367 has_generic_args: false,
368 has_lifetime_args: false,
369 args_span: DUMMY_SP,
370 }
371 }
372
373 fn names_to_string(segments: &[Segment]) -> String {
374 names_to_string(segments.iter().map(|seg| seg.ident.name))
375 }
376}
377
378impl<'a> From<&'a ast::PathSegment> for Segment {
379 fn from(seg: &'a ast::PathSegment) -> Segment {
380 let has_generic_args = seg.args.is_some();
381 let (args_span, has_lifetime_args) = if let Some(args) = seg.args.as_deref() {
382 match args {
383 GenericArgs::AngleBracketed(args) => {
384 let found_lifetimes = args
385 .args
386 .iter()
387 .any(|arg| #[allow(non_exhaustive_omitted_patterns)] match arg {
AngleBracketedArg::Arg(GenericArg::Lifetime(_)) => true,
_ => false,
}matches!(arg, AngleBracketedArg::Arg(GenericArg::Lifetime(_))));
388 (args.span, found_lifetimes)
389 }
390 GenericArgs::Parenthesized(args) => (args.span, true),
391 GenericArgs::ParenthesizedElided(span) => (*span, true),
392 }
393 } else {
394 (DUMMY_SP, false)
395 };
396 Segment {
397 ident: seg.ident,
398 id: Some(seg.id),
399 has_generic_args,
400 has_lifetime_args,
401 args_span,
402 }
403 }
404}
405
406#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for LateDecl<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
LateDecl::Decl(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Decl",
&__self_0),
LateDecl::RibDef(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "RibDef",
&__self_0),
}
}
}Debug, #[automatically_derived]
impl<'ra> ::core::marker::Copy for LateDecl<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::clone::Clone for LateDecl<'ra> {
#[inline]
fn clone(&self) -> LateDecl<'ra> {
let _: ::core::clone::AssertParamIsClone<Decl<'ra>>;
let _: ::core::clone::AssertParamIsClone<Res>;
*self
}
}Clone)]
408enum LateDecl<'ra> {
409 Decl(Decl<'ra>),
411 RibDef(Res),
414}
415
416impl<'ra> LateDecl<'ra> {
417 fn res(self) -> Res {
418 match self {
419 LateDecl::Decl(binding) => binding.res(),
420 LateDecl::RibDef(res) => res,
421 }
422 }
423}
424
425#[derive(#[automatically_derived]
impl<'ra> ::core::marker::Copy for ModuleOrUniformRoot<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::clone::Clone for ModuleOrUniformRoot<'ra> {
#[inline]
fn clone(&self) -> ModuleOrUniformRoot<'ra> {
let _: ::core::clone::AssertParamIsClone<Module<'ra>>;
let _: ::core::clone::AssertParamIsClone<Module<'ra>>;
let _: ::core::clone::AssertParamIsClone<Symbol>;
*self
}
}Clone, #[automatically_derived]
impl<'ra> ::core::cmp::PartialEq for ModuleOrUniformRoot<'ra> {
#[inline]
fn eq(&self, other: &ModuleOrUniformRoot<'ra>) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(ModuleOrUniformRoot::Module(__self_0),
ModuleOrUniformRoot::Module(__arg1_0)) =>
__self_0 == __arg1_0,
(ModuleOrUniformRoot::ModuleAndExternPrelude(__self_0),
ModuleOrUniformRoot::ModuleAndExternPrelude(__arg1_0)) =>
__self_0 == __arg1_0,
(ModuleOrUniformRoot::OpenModule(__self_0),
ModuleOrUniformRoot::OpenModule(__arg1_0)) =>
__self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl<'ra> ::core::fmt::Debug for ModuleOrUniformRoot<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
ModuleOrUniformRoot::Module(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Module",
&__self_0),
ModuleOrUniformRoot::ModuleAndExternPrelude(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"ModuleAndExternPrelude", &__self_0),
ModuleOrUniformRoot::ExternPrelude =>
::core::fmt::Formatter::write_str(f, "ExternPrelude"),
ModuleOrUniformRoot::CurrentScope =>
::core::fmt::Formatter::write_str(f, "CurrentScope"),
ModuleOrUniformRoot::OpenModule(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"OpenModule", &__self_0),
}
}
}Debug)]
426enum ModuleOrUniformRoot<'ra> {
427 Module(Module<'ra>),
429
430 ModuleAndExternPrelude(Module<'ra>),
434
435 ExternPrelude,
438
439 CurrentScope,
443
444 OpenModule(Symbol),
448}
449
450#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for PathResult<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
PathResult::Module(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Module",
&__self_0),
PathResult::NonModule(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"NonModule", &__self_0),
PathResult::Indeterminate =>
::core::fmt::Formatter::write_str(f, "Indeterminate"),
PathResult::Failed {
span: __self_0,
label: __self_1,
suggestion: __self_2,
is_error_from_last_segment: __self_3,
module: __self_4,
segment: __self_5,
error_implied_by_parse_error: __self_6,
message: __self_7,
note: __self_8 } => {
let names: &'static _ =
&["span", "label", "suggestion",
"is_error_from_last_segment", "module", "segment",
"error_implied_by_parse_error", "message", "note"];
let values: &[&dyn ::core::fmt::Debug] =
&[__self_0, __self_1, __self_2, __self_3, __self_4,
__self_5, __self_6, __self_7, &__self_8];
::core::fmt::Formatter::debug_struct_fields_finish(f,
"Failed", names, values)
}
}
}
}Debug)]
451enum PathResult<'ra> {
452 Module(ModuleOrUniformRoot<'ra>),
453 NonModule(PartialRes),
454 Indeterminate,
455 Failed {
456 span: Span,
457 label: String,
458 suggestion: Option<Suggestion>,
459 is_error_from_last_segment: bool,
460 module: Option<ModuleOrUniformRoot<'ra>>,
474 segment: Ident,
476 error_implied_by_parse_error: bool,
477 message: String,
478 note: Option<String>,
479 },
480}
481
482impl<'ra> PathResult<'ra> {
483 fn failed(
484 ident: Ident,
485 is_error_from_last_segment: bool,
486 finalize: bool,
487 error_implied_by_parse_error: bool,
488 module: Option<ModuleOrUniformRoot<'ra>>,
489 label_and_suggestion_and_note: impl FnOnce() -> (
490 String,
491 String,
492 Option<Suggestion>,
493 Option<String>,
494 ),
495 ) -> PathResult<'ra> {
496 let (message, label, suggestion, note) = if finalize {
497 label_and_suggestion_and_note()
498 } else {
499 (::alloc::__export::must_use({
::alloc::fmt::format(format_args!("cannot find `{0}` in this scope",
ident))
})format!("cannot find `{ident}` in this scope"), String::new(), None, None)
501 };
502 PathResult::Failed {
503 span: ident.span,
504 segment: ident,
505 label,
506 suggestion,
507 is_error_from_last_segment,
508 module,
509 error_implied_by_parse_error,
510 message,
511 note,
512 }
513 }
514}
515
516#[derive(#[automatically_derived]
impl ::core::fmt::Debug for ModuleKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
ModuleKind::Block =>
::core::fmt::Formatter::write_str(f, "Block"),
ModuleKind::Def(__self_0, __self_1, __self_2, __self_3) =>
::core::fmt::Formatter::debug_tuple_field4_finish(f, "Def",
__self_0, __self_1, __self_2, &__self_3),
}
}
}Debug)]
517enum ModuleKind {
518 Block,
531 Def(DefKind, DefId, NodeId, Option<Symbol>),
541}
542
543impl ModuleKind {
544 fn opt_def_id(&self) -> Option<DefId> {
545 match self {
546 ModuleKind::Def(_, def_id, _, _) => Some(*def_id),
547 _ => None,
548 }
549 }
550
551 fn def_id(&self) -> DefId {
552 self.opt_def_id().expect("`Module::def_id` is called on a block module")
553 }
554
555 fn is_local(&self) -> bool {
556 match self {
557 ModuleKind::Def(_, def_id, ..) => def_id.is_local(),
558 ModuleKind::Block => true,
559 }
560 }
561}
562
563#[derive(#[automatically_derived]
impl ::core::clone::Clone for IdentKey {
#[inline]
fn clone(&self) -> IdentKey {
let _: ::core::clone::AssertParamIsClone<Symbol>;
let _:
::core::clone::AssertParamIsClone<Macros20NormalizedSyntaxContext>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for IdentKey { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for IdentKey {
#[inline]
fn eq(&self, other: &IdentKey) -> bool {
self.name == other.name && self.ctxt == other.ctxt
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for IdentKey {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Symbol>;
let _: ::core::cmp::AssertParamIsEq<Macros20NormalizedSyntaxContext>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for IdentKey {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.name, state);
::core::hash::Hash::hash(&self.ctxt, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for IdentKey {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f, "IdentKey",
"name", &self.name, "ctxt", &&self.ctxt)
}
}Debug)]
574struct IdentKey {
575 name: Symbol,
576 ctxt: Macros20NormalizedSyntaxContext,
577}
578
579impl IdentKey {
580 #[inline]
581 fn new(ident: Ident) -> IdentKey {
582 IdentKey { name: ident.name, ctxt: Macros20NormalizedSyntaxContext::new(ident.span.ctxt()) }
583 }
584
585 #[inline]
586 fn new_adjusted(ident: Ident, expn_id: ExpnId) -> (IdentKey, Option<ExpnId>) {
587 let (ctxt, def) = Macros20NormalizedSyntaxContext::new_adjusted(ident.span.ctxt(), expn_id);
588 (IdentKey { name: ident.name, ctxt }, def)
589 }
590
591 #[inline]
592 fn with_root_ctxt(name: Symbol) -> Self {
593 let ctxt = Macros20NormalizedSyntaxContext::new_unchecked(SyntaxContext::root());
594 IdentKey { name, ctxt }
595 }
596
597 #[inline]
598 fn orig(self, orig_ident_span: Span) -> Ident {
599 Ident::new(self.name, orig_ident_span)
600 }
601}
602
603#[derive(#[automatically_derived]
impl ::core::marker::Copy for BindingKey { }Copy, #[automatically_derived]
impl ::core::clone::Clone for BindingKey {
#[inline]
fn clone(&self) -> BindingKey {
let _: ::core::clone::AssertParamIsClone<IdentKey>;
let _: ::core::clone::AssertParamIsClone<Namespace>;
let _: ::core::clone::AssertParamIsClone<u32>;
*self
}
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for BindingKey {
#[inline]
fn eq(&self, other: &BindingKey) -> bool {
self.disambiguator == other.disambiguator && self.ident == other.ident
&& self.ns == other.ns
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for BindingKey {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<IdentKey>;
let _: ::core::cmp::AssertParamIsEq<Namespace>;
let _: ::core::cmp::AssertParamIsEq<u32>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for BindingKey {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.ident, state);
::core::hash::Hash::hash(&self.ns, state);
::core::hash::Hash::hash(&self.disambiguator, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for BindingKey {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f, "BindingKey",
"ident", &self.ident, "ns", &self.ns, "disambiguator",
&&self.disambiguator)
}
}Debug)]
608struct BindingKey {
609 ident: IdentKey,
612 ns: Namespace,
613 disambiguator: u32,
619}
620
621impl BindingKey {
622 fn new(ident: IdentKey, ns: Namespace) -> Self {
623 BindingKey { ident, ns, disambiguator: 0 }
624 }
625
626 fn new_disambiguated(
627 ident: IdentKey,
628 ns: Namespace,
629 disambiguator: impl FnOnce() -> u32,
630 ) -> BindingKey {
631 let disambiguator = if ident.name == kw::Underscore { disambiguator() } else { 0 };
632 BindingKey { ident, ns, disambiguator }
633 }
634}
635
636type Resolutions<'ra> = CmRefCell<FxIndexMap<BindingKey, NameResolutionRef<'ra>>>;
637
638struct ModuleData<'ra> {
650 parent: Option<Module<'ra>>,
652 kind: ModuleKind,
654
655 lazy_resolutions: Resolutions<'ra>,
658 populate_on_access: Once,
660 underscore_disambiguator: CmCell<u32>,
662
663 unexpanded_invocations: CmRefCell<FxHashSet<LocalExpnId>>,
665
666 no_implicit_prelude: bool,
668
669 glob_importers: CmRefCell<Vec<Import<'ra>>>,
670 globs: CmRefCell<Vec<Import<'ra>>>,
671
672 traits: CmRefCell<
674 Option<Box<[(Symbol, Decl<'ra>, Option<Module<'ra>>, bool )]>>,
675 >,
676
677 span: Span,
679
680 expansion: ExpnId,
681
682 self_decl: Option<Decl<'ra>>,
685}
686
687#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for Module<'ra> {
#[inline]
fn clone(&self) -> Module<'ra> {
let _:
::core::clone::AssertParamIsClone<Interned<'ra,
ModuleData<'ra>>>;
*self
}
}Clone, #[automatically_derived]
impl<'ra> ::core::marker::Copy for Module<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::cmp::PartialEq for Module<'ra> {
#[inline]
fn eq(&self, other: &Module<'ra>) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl<'ra> ::core::cmp::Eq for Module<'ra> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Interned<'ra, ModuleData<'ra>>>;
}
}Eq, #[automatically_derived]
impl<'ra> ::core::hash::Hash for Module<'ra> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.0, state)
}
}Hash)]
690#[rustc_pass_by_value]
691struct Module<'ra>(Interned<'ra, ModuleData<'ra>>);
692
693#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for LocalModule<'ra> {
#[inline]
fn clone(&self) -> LocalModule<'ra> {
let _:
::core::clone::AssertParamIsClone<Interned<'ra,
ModuleData<'ra>>>;
*self
}
}Clone, #[automatically_derived]
impl<'ra> ::core::marker::Copy for LocalModule<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::cmp::PartialEq for LocalModule<'ra> {
#[inline]
fn eq(&self, other: &LocalModule<'ra>) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl<'ra> ::core::cmp::Eq for LocalModule<'ra> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Interned<'ra, ModuleData<'ra>>>;
}
}Eq, #[automatically_derived]
impl<'ra> ::core::hash::Hash for LocalModule<'ra> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.0, state)
}
}Hash)]
695#[rustc_pass_by_value]
696struct LocalModule<'ra>(Interned<'ra, ModuleData<'ra>>);
697
698#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for ExternModule<'ra> {
#[inline]
fn clone(&self) -> ExternModule<'ra> {
let _:
::core::clone::AssertParamIsClone<Interned<'ra,
ModuleData<'ra>>>;
*self
}
}Clone, #[automatically_derived]
impl<'ra> ::core::marker::Copy for ExternModule<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::cmp::PartialEq for ExternModule<'ra> {
#[inline]
fn eq(&self, other: &ExternModule<'ra>) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl<'ra> ::core::cmp::Eq for ExternModule<'ra> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Interned<'ra, ModuleData<'ra>>>;
}
}Eq, #[automatically_derived]
impl<'ra> ::core::hash::Hash for ExternModule<'ra> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.0, state)
}
}Hash)]
700#[rustc_pass_by_value]
701struct ExternModule<'ra>(Interned<'ra, ModuleData<'ra>>);
702
703impl<'ra> ModuleData<'ra> {
704 fn new(
705 parent: Option<Module<'ra>>,
706 kind: ModuleKind,
707 expansion: ExpnId,
708 span: Span,
709 no_implicit_prelude: bool,
710 vis: Visibility<ModId>,
711 arenas: &'ra ResolverArenas<'ra>,
712 ) -> Self {
713 let self_decl = match kind {
714 ModuleKind::Def(def_kind, def_id, ..) => {
715 let expn_id = expansion.as_local().unwrap_or(LocalExpnId::ROOT);
716 Some(arenas.new_def_decl(Res::Def(def_kind, def_id), vis, span, expn_id, parent))
717 }
718 ModuleKind::Block => None,
719 };
720 ModuleData {
721 parent,
722 kind,
723 lazy_resolutions: Default::default(),
724 populate_on_access: Once::new(),
725 underscore_disambiguator: CmCell::new(0),
726 unexpanded_invocations: Default::default(),
727 no_implicit_prelude,
728 glob_importers: CmRefCell::new(Vec::new()),
729 globs: CmRefCell::new(Vec::new()),
730 traits: CmRefCell::new(None),
731 span,
732 expansion,
733 self_decl,
734 }
735 }
736
737 fn name(&self) -> Option<Symbol> {
739 match self.kind {
740 ModuleKind::Block => None,
741 ModuleKind::Def(.., name) => name,
742 }
743 }
744
745 fn opt_def_id(&self) -> Option<DefId> {
746 self.kind.opt_def_id()
747 }
748
749 fn def_id(&self) -> DefId {
750 self.kind.def_id()
751 }
752
753 fn is_local(&self) -> bool {
754 self.kind.is_local()
755 }
756
757 fn has_unexpanded_invocations(&self) -> bool {
758 !self.unexpanded_invocations.borrow().is_empty()
759 }
760
761 fn res(&self) -> Option<Res> {
762 match self.kind {
763 ModuleKind::Def(kind, def_id, _, _) => Some(Res::Def(kind, def_id)),
764 _ => None,
765 }
766 }
767
768 fn def_kind(&self) -> Option<DefKind> {
769 match self.kind {
770 ModuleKind::Def(def_kind, ..) => Some(def_kind),
771 ModuleKind::Block => None,
772 }
773 }
774}
775
776impl<'ra> Module<'ra> {
777 fn for_each_child<'tcx, R: AsRef<Resolver<'ra, 'tcx>>>(
778 self,
779 resolver: &R,
780 mut f: impl FnMut(&R, IdentKey, Span, Namespace, Decl<'ra>),
781 ) {
782 for (key, name_resolution) in resolver.as_ref().resolutions(self).borrow().iter() {
783 let name_resolution = name_resolution.borrow();
784 if let Some(decl) = name_resolution.best_decl() {
785 f(resolver, key.ident, name_resolution.orig_ident_span, key.ns, decl);
786 }
787 }
788 }
789
790 fn for_each_child_mut<'tcx, R: AsMut<Resolver<'ra, 'tcx>>>(
791 self,
792 resolver: &mut R,
793 mut f: impl FnMut(&mut R, IdentKey, Span, Namespace, Decl<'ra>),
794 ) {
795 for (key, name_resolution) in resolver.as_mut().resolutions(self).borrow().iter() {
796 let name_resolution = name_resolution.borrow();
797 if let Some(decl) = name_resolution.best_decl() {
798 f(resolver, key.ident, name_resolution.orig_ident_span, key.ns, decl);
799 }
800 }
801 }
802
803 fn ensure_traits<'tcx>(self, resolver: &Resolver<'ra, 'tcx>) {
805 let mut traits = self.traits.borrow_mut(resolver.as_ref());
806 if traits.is_none() {
807 let mut collected_traits = Vec::new();
808 self.for_each_child(resolver, |r, ident, _, ns, mut decl| {
809 if ns != TypeNS {
810 return;
811 }
812
813 let ambiguous = decl.is_ambiguity_recursive();
814 let mut try_record_trait = |decl: Decl<'ra>| {
815 if let Res::Def(DefKind::Trait | DefKind::TraitAlias, def_id) = decl.res() {
816 collected_traits.push((
817 ident.name,
818 decl,
819 r.as_ref().get_module(def_id),
820 ambiguous,
821 ));
822 true
823 } else {
824 false
825 }
826 };
827 while !try_record_trait(decl)
831 && let Some((_, ambig_decl)) = decl.descent_to_ambiguity()
832 {
833 decl = ambig_decl;
834 }
835 });
836 *traits = Some(collected_traits.into_boxed_slice());
837 }
838 }
839
840 fn is_normal(self) -> bool {
842 self.def_kind() == Some(DefKind::Mod)
843 }
844
845 fn is_trait(self) -> bool {
846 #[allow(non_exhaustive_omitted_patterns)] match self.def_kind() {
Some(DefKind::Trait) => true,
_ => false,
}matches!(self.def_kind(), Some(DefKind::Trait))
847 }
848
849 fn nearest_item_scope(self) -> Module<'ra> {
850 match self.def_kind() {
851 Some(DefKind::Enum | DefKind::Trait) => {
852 self.parent.expect("enum or trait module without a parent")
853 }
854 _ => self,
855 }
856 }
857
858 fn nearest_parent_mod(self) -> ModId {
861 match self.kind {
862 ModuleKind::Def(DefKind::Mod, def_id, _, _) => ModId::new_unchecked(def_id),
863 _ => self.parent.expect("non-root module without parent").nearest_parent_mod(),
864 }
865 }
866
867 fn nearest_parent_mod_node_id(self) -> NodeId {
870 match self.kind {
871 ModuleKind::Def(DefKind::Mod, _, node_id, _) => node_id,
872 _ => self.parent.expect("non-root module without parent").nearest_parent_mod_node_id(),
873 }
874 }
875
876 fn is_ancestor_of(self, mut other: Self) -> bool {
877 while self != other {
878 if let Some(parent) = other.parent {
879 other = parent;
880 } else {
881 return false;
882 }
883 }
884 true
885 }
886
887 #[track_caller]
888 fn expect_local(self) -> LocalModule<'ra> {
889 match self.kind {
890 ModuleKind::Def(_, def_id, _, _) if !def_id.is_local() => {
891 ::rustc_middle::util::bug::span_bug_fmt(self.span,
format_args!("unexpected extern module: {0:?}", self))span_bug!(self.span, "unexpected extern module: {self:?}")
892 }
893 ModuleKind::Def(..) | ModuleKind::Block => LocalModule(self.0),
894 }
895 }
896
897 #[track_caller]
898 fn expect_extern(self) -> ExternModule<'ra> {
899 match self.kind {
900 ModuleKind::Def(_, def_id, _, _) if !def_id.is_local() => ExternModule(self.0),
901 ModuleKind::Def(..) | ModuleKind::Block => {
902 ::rustc_middle::util::bug::span_bug_fmt(self.span,
format_args!("unexpected local module: {0:?}", self))span_bug!(self.span, "unexpected local module: {self:?}")
903 }
904 }
905 }
906}
907
908impl<'ra> LocalModule<'ra> {
909 fn new(
910 parent: Option<LocalModule<'ra>>,
911 kind: ModuleKind,
912 vis: Visibility<ModId>,
913 expn_id: ExpnId,
914 span: Span,
915 no_implicit_prelude: bool,
916 arenas: &'ra ResolverArenas<'ra>,
917 ) -> LocalModule<'ra> {
918 if !kind.is_local() {
::core::panicking::panic("assertion failed: kind.is_local()")
};assert!(kind.is_local());
919 let parent = parent.map(|m| m.to_module());
920 let data = ModuleData::new(parent, kind, expn_id, span, no_implicit_prelude, vis, arenas);
921 LocalModule(Interned::new_unchecked(arenas.modules.alloc(data)))
923 }
924
925 fn to_module(self) -> Module<'ra> {
926 Module(self.0)
927 }
928}
929
930impl<'ra> ExternModule<'ra> {
931 fn new(
932 parent: Option<ExternModule<'ra>>,
933 kind: ModuleKind,
934 vis: Visibility<ModId>,
935 expn_id: ExpnId,
936 span: Span,
937 no_implicit_prelude: bool,
938 arenas: &'ra ResolverArenas<'ra>,
939 ) -> ExternModule<'ra> {
940 if !!kind.is_local() {
::core::panicking::panic("assertion failed: !kind.is_local()")
};assert!(!kind.is_local());
941 let parent = parent.map(|m| m.to_module());
942 let data = ModuleData::new(parent, kind, expn_id, span, no_implicit_prelude, vis, arenas);
943 ExternModule(Interned::new_unchecked(arenas.modules.alloc(data)))
945 }
946
947 fn to_module(self) -> Module<'ra> {
948 Module(self.0)
949 }
950}
951
952impl<'ra> std::ops::Deref for Module<'ra> {
953 type Target = ModuleData<'ra>;
954
955 fn deref(&self) -> &Self::Target {
956 &self.0
957 }
958}
959
960impl<'ra> std::ops::Deref for LocalModule<'ra> {
961 type Target = ModuleData<'ra>;
962
963 fn deref(&self) -> &Self::Target {
964 &self.0
965 }
966}
967
968impl<'ra> std::ops::Deref for ExternModule<'ra> {
969 type Target = ModuleData<'ra>;
970
971 fn deref(&self) -> &Self::Target {
972 &self.0
973 }
974}
975
976impl<'ra> fmt::Debug for Module<'ra> {
977 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
978 match self.res() {
979 None => f.write_fmt(format_args!("block"))write!(f, "block"),
980 Some(res) => f.write_fmt(format_args!("{0:?}", res))write!(f, "{:?}", res),
981 }
982 }
983}
984
985impl<'ra> fmt::Debug for LocalModule<'ra> {
986 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
987 self.to_module().fmt(f)
988 }
989}
990
991#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for DeclData<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["kind", "ambiguity", "expansion", "span", "initial_vis",
"ambiguity_vis_max", "ambiguity_vis_min", "parent_module"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.kind, &self.ambiguity, &self.expansion, &self.span,
&self.initial_vis, &self.ambiguity_vis_max,
&self.ambiguity_vis_min, &&self.parent_module];
::core::fmt::Formatter::debug_struct_fields_finish(f, "DeclData",
names, values)
}
}Debug)]
993struct DeclData<'ra> {
994 kind: DeclKind<'ra>,
995 ambiguity: CmCell<Option<(Decl<'ra>, bool )>>,
996 expansion: LocalExpnId,
997 span: Span,
998 initial_vis: Visibility<ModId>,
999 ambiguity_vis_max: CmCell<Option<Decl<'ra>>>,
1002 ambiguity_vis_min: CmCell<Option<Decl<'ra>>>,
1005 parent_module: Option<Module<'ra>>,
1006}
1007
1008type Decl<'ra> = Interned<'ra, DeclData<'ra>>;
1011
1012#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for DeclKind<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
DeclKind::Def(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Def",
&__self_0),
DeclKind::Import { source_decl: __self_0, import: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"Import", "source_decl", __self_0, "import", &__self_1),
}
}
}Debug)]
1014enum DeclKind<'ra> {
1015 Def(Res),
1018 Import { source_decl: Decl<'ra>, import: Import<'ra> },
1020}
1021
1022impl<'ra> DeclKind<'ra> {
1023 fn is_import(&self) -> bool {
1025 #[allow(non_exhaustive_omitted_patterns)] match *self {
DeclKind::Import { .. } => true,
_ => false,
}matches!(*self, DeclKind::Import { .. })
1026 }
1027}
1028
1029#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for PrivacyError<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["ident", "decl", "dedup_span", "outermost_res", "parent_scope",
"single_nested", "source"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.ident, &self.decl, &self.dedup_span, &self.outermost_res,
&self.parent_scope, &self.single_nested, &&self.source];
::core::fmt::Formatter::debug_struct_fields_finish(f, "PrivacyError",
names, values)
}
}Debug)]
1030struct PrivacyError<'ra> {
1031 ident: Ident,
1032 decl: Decl<'ra>,
1033 dedup_span: Span,
1034 outermost_res: Option<(Res, Ident)>,
1035 parent_scope: ParentScope<'ra>,
1036 single_nested: bool,
1038 source: Option<ast::Expr>,
1039}
1040
1041#[derive(#[automatically_derived]
impl<'a> ::core::fmt::Debug for UseError<'a> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["err", "candidates", "node_id", "instead", "suggestion", "path",
"is_call"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.err, &self.candidates, &self.node_id, &self.instead,
&self.suggestion, &self.path, &&self.is_call];
::core::fmt::Formatter::debug_struct_fields_finish(f, "UseError",
names, values)
}
}Debug)]
1042struct UseError<'a> {
1043 err: Diag<'a>,
1044 candidates: Vec<ImportSuggestion>,
1046 node_id: NodeId,
1048 instead: bool,
1050 suggestion: Option<(Span, &'static str, String, Applicability)>,
1052 path: Vec<Segment>,
1055 is_call: bool,
1057}
1058
1059#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for DelayedVisResolutionError<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f,
"DelayedVisResolutionError", "vis", &self.vis, "parent_scope",
&self.parent_scope, "error", &&self.error)
}
}Debug)]
1060struct DelayedVisResolutionError<'ra> {
1061 vis: ast::Visibility,
1062 parent_scope: ParentScope<'ra>,
1063 error: VisResolutionError,
1064}
1065
1066#[derive(#[automatically_derived]
impl ::core::clone::Clone for AmbiguityKind {
#[inline]
fn clone(&self) -> AmbiguityKind { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for AmbiguityKind { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for AmbiguityKind {
#[inline]
fn eq(&self, other: &AmbiguityKind) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for AmbiguityKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
AmbiguityKind::BuiltinAttr => "BuiltinAttr",
AmbiguityKind::DeriveHelper => "DeriveHelper",
AmbiguityKind::MacroRulesVsModularized =>
"MacroRulesVsModularized",
AmbiguityKind::GlobVsOuter => "GlobVsOuter",
AmbiguityKind::GlobVsGlob => "GlobVsGlob",
AmbiguityKind::GlobVsExpanded => "GlobVsExpanded",
AmbiguityKind::MoreExpandedVsOuter => "MoreExpandedVsOuter",
})
}
}Debug)]
1067enum AmbiguityKind {
1068 BuiltinAttr,
1069 DeriveHelper,
1070 MacroRulesVsModularized,
1071 GlobVsOuter,
1072 GlobVsGlob,
1073 GlobVsExpanded,
1074 MoreExpandedVsOuter,
1075}
1076
1077impl AmbiguityKind {
1078 fn descr(self) -> &'static str {
1079 match self {
1080 AmbiguityKind::BuiltinAttr => "a name conflict with a builtin attribute",
1081 AmbiguityKind::DeriveHelper => "a name conflict with a derive helper attribute",
1082 AmbiguityKind::MacroRulesVsModularized => {
1083 "a conflict between a `macro_rules` name and a non-`macro_rules` name from another module"
1084 }
1085 AmbiguityKind::GlobVsOuter => {
1086 "a conflict between a name from a glob import and an outer scope during import or macro resolution"
1087 }
1088 AmbiguityKind::GlobVsGlob => "multiple glob imports of a name in the same module",
1089 AmbiguityKind::GlobVsExpanded => {
1090 "a conflict between a name from a glob import and a macro-expanded name in the same module during import or macro resolution"
1091 }
1092 AmbiguityKind::MoreExpandedVsOuter => {
1093 "a conflict between a macro-expanded name and a less macro-expanded name from outer scope during import or macro resolution"
1094 }
1095 }
1096 }
1097}
1098
1099#[derive(#[automatically_derived]
impl ::core::clone::Clone for AmbiguityWarning {
#[inline]
fn clone(&self) -> AmbiguityWarning { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for AmbiguityWarning { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for AmbiguityWarning {
#[inline]
fn eq(&self, other: &AmbiguityWarning) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq)]
1100enum AmbiguityWarning {
1101 GlobImport,
1102 PanicImport,
1103}
1104
1105struct AmbiguityError<'ra> {
1106 kind: AmbiguityKind,
1107 ambig_vis: Option<(Visibility, Visibility)>,
1108 ident: Ident,
1109 b1: Decl<'ra>,
1110 b2: Decl<'ra>,
1111 scope1: Scope<'ra>,
1112 scope2: Scope<'ra>,
1113 warning: Option<AmbiguityWarning>,
1114}
1115
1116impl<'ra> DeclData<'ra> {
1117 fn vis(&self) -> Visibility<ModId> {
1118 self.ambiguity_vis_max.get().map(|d| d.vis()).unwrap_or_else(|| self.initial_vis)
1120 }
1121
1122 fn min_vis(&self) -> Visibility<ModId> {
1123 self.ambiguity_vis_min.get().map(|d| d.vis()).unwrap_or_else(|| self.initial_vis)
1125 }
1126
1127 fn res(&self) -> Res {
1128 match self.kind {
1129 DeclKind::Def(res) => res,
1130 DeclKind::Import { source_decl, .. } => source_decl.res(),
1131 }
1132 }
1133
1134 fn import_source(&self) -> Decl<'ra> {
1135 match self.kind {
1136 DeclKind::Import { source_decl, .. } => source_decl,
1137 _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1138 }
1139 }
1140
1141 fn descent_to_ambiguity(self: Decl<'ra>) -> Option<(Decl<'ra>, Decl<'ra>)> {
1142 match self.ambiguity.get() {
1143 Some((ambig_binding, _)) => Some((self, ambig_binding)),
1144 None => match self.kind {
1145 DeclKind::Import { source_decl, .. } => source_decl.descent_to_ambiguity(),
1146 _ => None,
1147 },
1148 }
1149 }
1150
1151 fn is_ambiguity_recursive(&self) -> bool {
1152 self.ambiguity.get().is_some()
1153 || match self.kind {
1154 DeclKind::Import { source_decl, .. } => source_decl.is_ambiguity_recursive(),
1155 _ => false,
1156 }
1157 }
1158
1159 fn is_possibly_imported_variant(&self) -> bool {
1160 match self.kind {
1161 DeclKind::Import { source_decl, .. } => source_decl.is_possibly_imported_variant(),
1162 DeclKind::Def(Res::Def(DefKind::Variant | DefKind::Ctor(CtorOf::Variant, ..), _)) => {
1163 true
1164 }
1165 DeclKind::Def(..) => false,
1166 }
1167 }
1168
1169 fn is_extern_crate(&self) -> bool {
1170 match self.kind {
1171 DeclKind::Import { import, .. } => {
1172 #[allow(non_exhaustive_omitted_patterns)] match import.kind {
ImportKind::ExternCrate { .. } => true,
_ => false,
}matches!(import.kind, ImportKind::ExternCrate { .. })
1173 }
1174 DeclKind::Def(Res::Def(_, def_id)) => def_id.is_crate_root(),
1175 _ => false,
1176 }
1177 }
1178
1179 fn is_import(&self) -> bool {
1180 #[allow(non_exhaustive_omitted_patterns)] match self.kind {
DeclKind::Import { .. } => true,
_ => false,
}matches!(self.kind, DeclKind::Import { .. })
1181 }
1182
1183 fn is_import_user_facing(&self) -> bool {
1186 #[allow(non_exhaustive_omitted_patterns)] match self.kind {
DeclKind::Import { import, .. } if
!#[allow(non_exhaustive_omitted_patterns)] match import.kind {
ImportKind::MacroExport => true,
_ => false,
} => true,
_ => false,
}matches!(self.kind, DeclKind::Import { import, .. }
1187 if !matches!(import.kind, ImportKind::MacroExport))
1188 }
1189
1190 fn is_glob_import(&self) -> bool {
1191 match self.kind {
1192 DeclKind::Import { import, .. } => import.is_glob(),
1193 _ => false,
1194 }
1195 }
1196
1197 fn is_assoc_item(&self) -> bool {
1198 #[allow(non_exhaustive_omitted_patterns)] match self.res() {
Res::Def(DefKind::AssocConst { .. } | DefKind::AssocFn | DefKind::AssocTy,
_) => true,
_ => false,
}matches!(
1199 self.res(),
1200 Res::Def(DefKind::AssocConst { .. } | DefKind::AssocFn | DefKind::AssocTy, _)
1201 )
1202 }
1203
1204 fn macro_kinds(&self) -> Option<MacroKinds> {
1205 self.res().macro_kinds()
1206 }
1207
1208 fn reexport_chain(self: Decl<'ra>) -> SmallVec<[Reexport; 2]> {
1209 let mut reexport_chain = SmallVec::new();
1210 let mut next_binding = self;
1211 while let DeclKind::Import { source_decl, import, .. } = next_binding.kind {
1212 reexport_chain.push(import.simplify());
1213 next_binding = source_decl;
1214 }
1215 reexport_chain
1216 }
1217
1218 fn may_appear_after(&self, invoc_parent_expansion: LocalExpnId, decl: Decl<'_>) -> bool {
1225 let self_parent_expansion = self.expansion;
1229 let other_parent_expansion = decl.expansion;
1230 let certainly_before_other_or_simultaneously =
1231 other_parent_expansion.is_descendant_of(self_parent_expansion);
1232 let certainly_before_invoc_or_simultaneously =
1233 invoc_parent_expansion.is_descendant_of(self_parent_expansion);
1234 !(certainly_before_other_or_simultaneously || certainly_before_invoc_or_simultaneously)
1235 }
1236
1237 fn determined(&self) -> bool {
1243 match &self.kind {
1244 DeclKind::Import { source_decl, import, .. } if import.is_glob() => {
1245 !import.parent_scope.module.has_unexpanded_invocations() && source_decl.determined()
1246 }
1247 _ => true,
1248 }
1249 }
1250}
1251
1252#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for ExternPreludeEntry<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f,
"ExternPreludeEntry", "item_decl", &self.item_decl, "flag_decl",
&&self.flag_decl)
}
}Debug)]
1253struct ExternPreludeEntry<'ra> {
1254 item_decl: Option<(Decl<'ra>, Span, bool)>,
1258 flag_decl: Option<
1260 CacheCell<(
1261 PendingDecl<'ra>,
1262 bool,
1263 bool,
1264 )>,
1265 >,
1266}
1267
1268impl ExternPreludeEntry<'_> {
1269 fn introduced_by_item(&self) -> bool {
1270 #[allow(non_exhaustive_omitted_patterns)] match self.item_decl {
Some((.., true)) => true,
_ => false,
}matches!(self.item_decl, Some((.., true)))
1271 }
1272
1273 fn flag() -> Self {
1274 ExternPreludeEntry {
1275 item_decl: None,
1276 flag_decl: Some(CacheCell::new((PendingDecl::Pending, false, false))),
1277 }
1278 }
1279
1280 fn open_flag() -> Self {
1281 ExternPreludeEntry {
1282 item_decl: None,
1283 flag_decl: Some(CacheCell::new((PendingDecl::Pending, false, true))),
1284 }
1285 }
1286
1287 fn span(&self) -> Span {
1288 match self.item_decl {
1289 Some((_, span, _)) => span,
1290 None => DUMMY_SP,
1291 }
1292 }
1293}
1294
1295struct DeriveData {
1296 resolutions: Vec<DeriveResolution>,
1297 helper_attrs: Vec<(usize, IdentKey, Span)>,
1298 has_derive_copy: bool,
1301 has_derive_ord: bool,
1302}
1303
1304pub struct ResolverOutputs<'tcx> {
1305 pub global_ctxt: ResolverGlobalCtxt,
1306 pub ast_lowering: ResolverAstLowering<'tcx>,
1307}
1308
1309#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DelegationFnSig {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field1_finish(f,
"DelegationFnSig", "has_self", &&self.has_self)
}
}Debug)]
1310struct DelegationFnSig {
1311 pub has_self: bool,
1312}
1313
1314pub struct Resolver<'ra, 'tcx> {
1318 tcx: TyCtxt<'tcx>,
1319
1320 expn_that_defined: UnordMap<LocalDefId, ExpnId> = Default::default(),
1322
1323 graph_root: LocalModule<'ra>,
1324
1325 assert_speculative: bool,
1327
1328 prelude: Option<Module<'ra>> = None,
1329 extern_prelude: FxIndexMap<IdentKey, ExternPreludeEntry<'ra>>,
1330
1331 field_names: LocalDefIdMap<Vec<Ident>> = Default::default(),
1333 field_defaults: LocalDefIdMap<Vec<Symbol>> = Default::default(),
1334
1335 field_visibility_spans: FxHashMap<DefId, Vec<Span>> = default::fx_hash_map(),
1338
1339 determined_imports: Vec<Import<'ra>> = Vec::new(),
1341
1342 indeterminate_imports: Vec<(Import<'ra>, Option<ImportResolution<'ra>>, usize)> = Vec::new(),
1344
1345 pat_span_map: NodeMap<Span> = Default::default(),
1348
1349 partial_res_map: NodeMap<PartialRes> = Default::default(),
1351 import_use_map: FxHashMap<Import<'ra>, Used> = default::fx_hash_map(),
1353
1354 extern_crate_map: UnordMap<LocalDefId, CrateNum> = Default::default(),
1356 module_children: LocalDefIdMap<Vec<ModChild>> = Default::default(),
1357 ambig_module_children: LocalDefIdMap<Vec<AmbigModChild>> = Default::default(),
1358
1359 block_map: NodeMap<LocalModule<'ra>> = Default::default(),
1374 empty_module: LocalModule<'ra>,
1378 local_modules: Vec<LocalModule<'ra>>,
1380 local_module_map: FxIndexMap<LocalDefId, LocalModule<'ra>>,
1382 extern_module_map: CacheRefCell<FxIndexMap<DefId, ExternModule<'ra>>>,
1384
1385 glob_map: FxIndexMap<LocalDefId, FxIndexSet<Symbol>>,
1387 glob_error: Option<ErrorGuaranteed> = None,
1388 visibilities_for_hashing: Vec<(LocalDefId, Visibility)> = Vec::new(),
1389 used_imports: FxHashSet<NodeId> = default::fx_hash_set(),
1390 maybe_unused_trait_imports: FxIndexSet<LocalDefId>,
1391
1392 privacy_errors: Vec<PrivacyError<'ra>> = Vec::new(),
1394 ambiguity_errors: Vec<AmbiguityError<'ra>> = Vec::new(),
1396 issue_145575_hack_applied: bool = false,
1397 delayed_vis_resolution_errors: Vec<DelayedVisResolutionError<'ra>> = Vec::new(),
1399 macro_expanded_macro_export_errors: BTreeSet<(Span, Span)> = BTreeSet::new(),
1401
1402 arenas: &'ra WorkerLocal<ResolverArenas<'ra>>,
1403 dummy_decl: Decl<'ra>,
1404 builtin_type_decls: FxHashMap<Symbol, Decl<'ra>>,
1405 builtin_attr_decls: FxHashMap<Symbol, Decl<'ra>>,
1406 registered_tool_decls: FxHashMap<IdentKey, Decl<'ra>>,
1407 macro_names: FxHashSet<IdentKey> = default::fx_hash_set(),
1408 builtin_macros: FxHashMap<Symbol, SyntaxExtensionKind> = default::fx_hash_map(),
1409 registered_tools: &'tcx RegisteredTools,
1410 macro_use_prelude: FxIndexMap<Symbol, Decl<'ra>>,
1411 local_macro_map: FxHashMap<LocalDefId, &'ra Arc<SyntaxExtension>> = default::fx_hash_map(),
1413 extern_macro_map: CacheRefCell<FxHashMap<DefId, &'ra Arc<SyntaxExtension>>>,
1415 dummy_ext_bang: &'ra Arc<SyntaxExtension>,
1416 dummy_ext_derive: &'ra Arc<SyntaxExtension>,
1417 non_macro_attr: &'ra Arc<SyntaxExtension>,
1418 local_macro_def_scopes: FxHashMap<LocalDefId, LocalModule<'ra>> = default::fx_hash_map(),
1419 ast_transform_scopes: FxHashMap<LocalExpnId, LocalModule<'ra>> = default::fx_hash_map(),
1420 unused_macros: FxIndexMap<LocalDefId, (NodeId, Ident)>,
1421 unused_macro_rules: FxIndexMap<NodeId, (LocalDefId, DenseBitSet<usize>)>,
1423 proc_macro_stubs: FxHashSet<LocalDefId> = default::fx_hash_set(),
1424 single_segment_macro_resolutions:
1426 CmRefCell<Vec<(Ident, MacroKind, ParentScope<'ra>, Option<Decl<'ra>>, Option<Span>)>>,
1427 multi_segment_macro_resolutions:
1428 CmRefCell<Vec<(Vec<Segment>, Span, MacroKind, ParentScope<'ra>, Option<Res>, Namespace)>>,
1429 builtin_attrs: Vec<(Ident, ParentScope<'ra>)> = Vec::new(),
1430 containers_deriving_copy: FxHashSet<LocalExpnId> = default::fx_hash_set(),
1434 containers_deriving_ord: FxHashSet<LocalExpnId> = default::fx_hash_set(),
1435 invocation_parent_scopes: FxHashMap<LocalExpnId, ParentScope<'ra>> = default::fx_hash_map(),
1438 output_macro_rules_scopes: FxHashMap<LocalExpnId, MacroRulesScopeRef<'ra>> = default::fx_hash_map(),
1441 macro_rules_scopes: FxHashMap<LocalDefId, MacroRulesScopeRef<'ra>> = default::fx_hash_map(),
1443 helper_attrs: FxHashMap<LocalExpnId, Vec<(IdentKey, Span, Decl<'ra>)>> = default::fx_hash_map(),
1445 derive_data: FxHashMap<LocalExpnId, DeriveData> = default::fx_hash_map(),
1448
1449 name_already_seen: FxHashMap<Symbol, Span> = default::fx_hash_map(),
1451
1452 potentially_unused_imports: Vec<Import<'ra>> = Vec::new(),
1453
1454 potentially_unnecessary_qualifications: Vec<UnnecessaryQualification<'ra>> = Vec::new(),
1455
1456 struct_ctors: LocalDefIdMap<StructCtor> = Default::default(),
1460
1461 struct_generics: LocalDefIdMap<Generics> = Default::default(),
1464
1465 lint_buffer: LintBuffer,
1466
1467 next_node_id: NodeId = CRATE_NODE_ID,
1468
1469 owners: NodeMap<PerOwnerResolverData<'tcx>>,
1471
1472 current_owner: PerOwnerResolverData<'tcx>,
1474
1475 disambiguators: LocalDefIdMap<PerParentDisambiguatorState>,
1476
1477 placeholder_field_indices: FxHashMap<NodeId, usize> = default::fx_hash_map(),
1479 invocation_parents: FxHashMap<LocalExpnId, InvocationParent>,
1483
1484 item_generics_num_lifetimes: FxHashMap<LocalDefId, usize> = default::fx_hash_map(),
1486 item_required_generic_args_suggestions: FxHashMap<LocalDefId, String> = default::fx_hash_map(),
1488 delegation_fn_sigs: LocalDefIdMap<DelegationFnSig> = Default::default(),
1489 delegation_infos: FxIndexMap<LocalDefId, DelegationInfo>,
1490
1491 main_def: Option<MainDefinition> = None,
1492 trait_impls: FxIndexMap<DefId, Vec<LocalDefId>>,
1493 proc_macros: Vec<LocalDefId> = Vec::new(),
1496 confused_type_with_std_module: FxIndexMap<Span, Span>,
1497
1498 stripped_cfg_items: Vec<StrippedCfgItem<NodeId>> = Vec::new(),
1500
1501 effective_visibilities: EffectiveVisibilities,
1502 macro_reachable_adts: FxIndexMap<LocalDefId, FxIndexSet<LocalDefId>>,
1503
1504 doc_link_resolutions: FxIndexMap<LocalModId, DocLinkResMap>,
1505 doc_link_traits_in_scope: FxIndexMap<LocalModId, Vec<DefId>>,
1506 all_macro_rules: UnordSet<Symbol> = Default::default(),
1507
1508 glob_delegation_invoc_ids: FxHashSet<LocalExpnId> = default::fx_hash_set(),
1510 impl_unexpanded_invocations: FxHashMap<LocalDefId, FxHashSet<LocalExpnId>> = default::fx_hash_map(),
1513 impl_binding_keys: FxHashMap<LocalDefId, FxHashSet<BindingKey>> = default::fx_hash_map(),
1516
1517 current_crate_outer_attr_insert_span: Span,
1520
1521 mods_with_parse_errors: FxHashSet<DefId> = default::fx_hash_set(),
1522
1523 all_crate_macros_already_registered: bool = false,
1526
1527 impl_trait_names: FxHashMap<NodeId, Symbol> = default::fx_hash_map(),
1531
1532 on_unknown_data: FxHashMap<LocalDefId, OnUnknownData> = default::fx_hash_map(),
1534 features: &'tcx Features,
1535}
1536
1537#[derive(#[automatically_derived]
impl<'ra> ::core::default::Default for ResolverArenas<'ra> {
#[inline]
fn default() -> ResolverArenas<'ra> {
ResolverArenas {
modules: ::core::default::Default::default(),
imports: ::core::default::Default::default(),
name_resolutions: ::core::default::Default::default(),
ast_paths: ::core::default::Default::default(),
macros: ::core::default::Default::default(),
dropless: ::core::default::Default::default(),
}
}
}Default)]
1540pub struct ResolverArenas<'ra> {
1541 modules: TypedArena<ModuleData<'ra>>,
1542 imports: TypedArena<ImportData<'ra>>,
1543 name_resolutions: TypedArena<CmRefCell<NameResolution<'ra>>>,
1544 ast_paths: TypedArena<ast::Path>,
1545 macros: TypedArena<Arc<SyntaxExtension>>,
1546 dropless: DroplessArena,
1547}
1548
1549impl<'ra> ResolverArenas<'ra> {
1550 fn new_def_decl(
1551 &'ra self,
1552 res: Res,
1553 vis: Visibility<ModId>,
1554 span: Span,
1555 expansion: LocalExpnId,
1556 parent_module: Option<Module<'ra>>,
1557 ) -> Decl<'ra> {
1558 self.alloc_decl(DeclData {
1559 kind: DeclKind::Def(res),
1560 ambiguity: CmCell::new(None),
1561 initial_vis: vis,
1562 ambiguity_vis_max: CmCell::new(None),
1563 ambiguity_vis_min: CmCell::new(None),
1564 span,
1565 expansion,
1566 parent_module,
1567 })
1568 }
1569
1570 fn new_pub_def_decl(&'ra self, res: Res, span: Span, expn_id: LocalExpnId) -> Decl<'ra> {
1571 self.new_def_decl(res, Visibility::Public, span, expn_id, None)
1572 }
1573
1574 fn alloc_decl(&'ra self, data: DeclData<'ra>) -> Decl<'ra> {
1575 Interned::new_unchecked(self.dropless.alloc(data))
1577 }
1578 fn alloc_import(&'ra self, import: ImportData<'ra>) -> Import<'ra> {
1579 Interned::new_unchecked(self.imports.alloc(import))
1581 }
1582 fn alloc_name_resolution(&'ra self, resolution: NameResolution<'ra>) -> NameResolutionRef<'ra> {
1583 Interned::new_unchecked(self.name_resolutions.alloc(CmRefCell::new(resolution)))
1585 }
1586 fn alloc_macro_rules_scope(&'ra self, scope: MacroRulesScope<'ra>) -> MacroRulesScopeRef<'ra> {
1587 self.dropless.alloc(CacheCell::new(scope))
1588 }
1589 fn alloc_macro_rules_decl(&'ra self, decl: MacroRulesDecl<'ra>) -> &'ra MacroRulesDecl<'ra> {
1590 self.dropless.alloc(decl)
1591 }
1592 fn alloc_ast_paths(&'ra self, paths: &[ast::Path]) -> &'ra [ast::Path] {
1593 self.ast_paths.alloc_from_iter(paths.iter().cloned())
1594 }
1595 fn alloc_macro(&'ra self, ext: SyntaxExtension) -> &'ra Arc<SyntaxExtension> {
1596 self.macros.alloc(Arc::new(ext))
1597 }
1598 fn alloc_pattern_spans(&'ra self, spans: impl Iterator<Item = Span>) -> &'ra [Span] {
1599 self.dropless.alloc_from_iter(spans)
1600 }
1601}
1602
1603impl<'ra, 'tcx> AsMut<Resolver<'ra, 'tcx>> for Resolver<'ra, 'tcx> {
1604 fn as_mut(&mut self) -> &mut Resolver<'ra, 'tcx> {
1605 self
1606 }
1607}
1608
1609impl<'ra, 'tcx> AsRef<Resolver<'ra, 'tcx>> for Resolver<'ra, 'tcx> {
1610 fn as_ref(&self) -> &Resolver<'ra, 'tcx> {
1611 self
1612 }
1613}
1614
1615impl<'tcx> Resolver<'_, 'tcx> {
1616 fn owner_def_id(&self, owner: NodeId) -> LocalDefId {
1620 self.owners[&owner].def_id
1621 }
1622
1623 fn child_def_id(&self, owner: NodeId, id: NodeId) -> LocalDefId {
1627 self.owners[&owner].node_id_to_def_id[&id]
1628 }
1629
1630 fn opt_local_def_id(&self, node: NodeId) -> Option<LocalDefId> {
1632 self.current_owner.node_id_to_def_id.get(&node).copied()
1633 }
1634
1635 fn local_def_id(&self, node: NodeId) -> LocalDefId {
1637 self.opt_local_def_id(node).unwrap_or_else(|| {
::core::panicking::panic_fmt(format_args!("no entry for node id: `{0:?}`",
node));
}panic!("no entry for node id: `{node:?}`"))
1638 }
1639
1640 fn create_def(
1642 &mut self,
1643 parent: LocalDefId,
1644 node_id: ast::NodeId,
1645 name: Option<Symbol>,
1646 def_kind: DefKind,
1647 expn_id: ExpnId,
1648 span: Span,
1649 is_owner: bool,
1650 ) -> TyCtxtFeed<'tcx, LocalDefId> {
1651 if !!self.current_owner.node_id_to_def_id.contains_key(&node_id) {
{
::core::panicking::panic_fmt(format_args!("adding a def for node-id {0:?}, name {1:?}, data {2:?} but a previous def exists: {3:?}",
node_id, name, def_kind,
self.tcx.definitions_untracked().def_key(self.current_owner.node_id_to_def_id[&node_id])));
}
};assert!(
1652 !self.current_owner.node_id_to_def_id.contains_key(&node_id),
1653 "adding a def for node-id {:?}, name {:?}, data {:?} but a previous def exists: {:?}",
1654 node_id,
1655 name,
1656 def_kind,
1657 self.tcx
1658 .definitions_untracked()
1659 .def_key(self.current_owner.node_id_to_def_id[&node_id]),
1660 );
1661
1662 let disambiguator = self.disambiguators.get_or_create(parent);
1663
1664 let feed = self.tcx.create_def(parent, name, def_kind, None, disambiguator);
1666 let def_id = feed.def_id();
1667
1668 if expn_id != ExpnId::root() {
1670 self.expn_that_defined.insert(def_id, expn_id);
1671 }
1672
1673 if true {
{
match (&span.data_untracked().parent, &None) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
};debug_assert_eq!(span.data_untracked().parent, None);
1675 let _id = self.tcx.untracked().source_span.push(span);
1676 if true {
{
match (&_id, &def_id) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
};debug_assert_eq!(_id, def_id);
1677
1678 if node_id != ast::DUMMY_NODE_ID && !is_owner {
1682 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:1682",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(1682u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("create_def: def_id_to_node_id[{0:?}] <-> {1:?}",
def_id, node_id) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("create_def: def_id_to_node_id[{:?}] <-> {:?}", def_id, node_id);
1683 self.current_owner.node_id_to_def_id.insert(node_id, def_id);
1684 }
1685
1686 feed
1687 }
1688
1689 fn item_generics_num_lifetimes(&self, def_id: DefId) -> usize {
1690 if let Some(def_id) = def_id.as_local() {
1691 self.item_generics_num_lifetimes[&def_id]
1692 } else {
1693 self.tcx.generics_of(def_id).own_counts().lifetimes
1694 }
1695 }
1696
1697 fn item_required_generic_args_suggestion(&self, def_id: DefId) -> String {
1698 if let Some(def_id) = def_id.as_local() {
1699 self.item_required_generic_args_suggestions.get(&def_id).cloned().unwrap_or_default()
1700 } else {
1701 let required = self
1702 .tcx
1703 .generics_of(def_id)
1704 .own_params
1705 .iter()
1706 .filter_map(|param| match param.kind {
1707 ty::GenericParamDefKind::Lifetime => Some("'_"),
1708 ty::GenericParamDefKind::Type { has_default, .. }
1709 | ty::GenericParamDefKind::Const { has_default } => {
1710 if has_default {
1711 None
1712 } else {
1713 Some("_")
1714 }
1715 }
1716 })
1717 .collect::<Vec<_>>();
1718
1719 if required.is_empty() { String::new() } else { ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("<{0}>", required.join(", ")))
})format!("<{}>", required.join(", ")) }
1720 }
1721 }
1722
1723 pub fn tcx(&self) -> TyCtxt<'tcx> {
1724 self.tcx
1725 }
1726
1727 fn def_id_to_node_id(&self, def_id: LocalDefId) -> NodeId {
1734 self.owners
1735 .items()
1736 .flat_map(|(_, data)| {
1737 data.node_id_to_def_id
1738 .items()
1739 .chain(UnordItems::new([(&data.id, &data.def_id)].into_iter()))
1740 })
1741 .filter(|(_, v)| **v == def_id)
1742 .map(|(k, _)| *k)
1743 .get_only()
1744 .unwrap()
1745 }
1746}
1747
1748impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
1749 pub fn new(
1750 tcx: TyCtxt<'tcx>,
1751 attrs: &[ast::Attribute],
1752 crate_span: Span,
1753 current_crate_outer_attr_insert_span: Span,
1754 arenas: &'ra WorkerLocal<ResolverArenas<'ra>>,
1755 ) -> Resolver<'ra, 'tcx> {
1756 let root_def_id = CRATE_DEF_ID.to_def_id();
1757 let graph_root = LocalModule::new(
1758 None,
1759 ModuleKind::Def(DefKind::Mod, root_def_id, CRATE_NODE_ID, None),
1760 Visibility::Public,
1761 ExpnId::root(),
1762 crate_span,
1763 attr::contains_name(attrs, sym::no_implicit_prelude),
1764 arenas,
1765 );
1766 let local_modules = ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[graph_root]))vec![graph_root];
1767 let local_module_map = FxIndexMap::from_iter([(CRATE_DEF_ID, graph_root)]);
1768 let empty_module = LocalModule::new(
1769 None,
1770 ModuleKind::Def(DefKind::Mod, root_def_id, CRATE_NODE_ID, None),
1771 Visibility::Public,
1772 ExpnId::root(),
1773 DUMMY_SP,
1774 true,
1775 arenas,
1776 );
1777
1778 let owner_data = PerOwnerResolverData::new(CRATE_NODE_ID, CRATE_DEF_ID);
1779 let crate_feed = tcx.create_local_crate_def_id(crate_span);
1780
1781 crate_feed.def_kind(DefKind::Mod);
1782 let mut owners = NodeMap::default();
1783 owners.insert(CRATE_NODE_ID, owner_data);
1784
1785 let mut invocation_parents = FxHashMap::default();
1786 invocation_parents.insert(LocalExpnId::ROOT, InvocationParent::ROOT);
1787
1788 let extern_prelude = build_extern_prelude(tcx, attrs);
1789 let registered_tools = tcx.registered_tools(());
1790 let edition = tcx.sess.edition();
1791
1792 let mut resolver = Resolver {
1793 tcx,
1794
1795 graph_root,
1798 assert_speculative: false, extern_prelude,
1800
1801 empty_module,
1802 local_modules,
1803 local_module_map,
1804 extern_module_map: Default::default(),
1805
1806 glob_map: Default::default(),
1807 maybe_unused_trait_imports: Default::default(),
1808
1809 arenas,
1810 dummy_decl: arenas.new_pub_def_decl(Res::Err, DUMMY_SP, LocalExpnId::ROOT),
1811 builtin_type_decls: PrimTy::ALL
1812 .iter()
1813 .map(|prim_ty| {
1814 let res = Res::PrimTy(*prim_ty);
1815 let decl = arenas.new_pub_def_decl(res, DUMMY_SP, LocalExpnId::ROOT);
1816 (prim_ty.name(), decl)
1817 })
1818 .collect(),
1819 builtin_attr_decls: BUILTIN_ATTRIBUTES
1820 .iter()
1821 .map(|builtin_attr| {
1822 let res = Res::NonMacroAttr(NonMacroAttrKind::Builtin(*builtin_attr));
1823 let decl = arenas.new_pub_def_decl(res, DUMMY_SP, LocalExpnId::ROOT);
1824 (*builtin_attr, decl)
1825 })
1826 .collect(),
1827 registered_tool_decls: registered_tools
1828 .iter()
1829 .map(|&ident| {
1830 let res = Res::ToolMod;
1831 let decl = arenas.new_pub_def_decl(res, ident.span, LocalExpnId::ROOT);
1832 (IdentKey::new(ident), decl)
1833 })
1834 .collect(),
1835 registered_tools,
1836 macro_use_prelude: Default::default(),
1837 extern_macro_map: Default::default(),
1838 dummy_ext_bang: arenas.alloc_macro(SyntaxExtension::dummy_bang(edition)),
1839 dummy_ext_derive: arenas.alloc_macro(SyntaxExtension::dummy_derive(edition)),
1840 non_macro_attr: arenas.alloc_macro(SyntaxExtension::non_macro_attr(edition)),
1841 unused_macros: Default::default(),
1842 unused_macro_rules: Default::default(),
1843 single_segment_macro_resolutions: Default::default(),
1844 multi_segment_macro_resolutions: Default::default(),
1845 lint_buffer: LintBuffer::default(),
1846 owners,
1847 current_owner: PerOwnerResolverData::new(DUMMY_NODE_ID, CRATE_DEF_ID),
1848 invocation_parents,
1849 trait_impls: Default::default(),
1850 confused_type_with_std_module: Default::default(),
1851 stripped_cfg_items: Default::default(),
1852 effective_visibilities: Default::default(),
1853 macro_reachable_adts: Default::default(),
1854 doc_link_resolutions: Default::default(),
1855 doc_link_traits_in_scope: Default::default(),
1856 current_crate_outer_attr_insert_span,
1857 disambiguators: Default::default(),
1858 delegation_infos: Default::default(),
1859 features: tcx.features(),
1860 ..
1861 };
1862
1863 if let Some(directive) = OnUnknownData::from_attrs(&resolver, attrs) {
1864 resolver.on_unknown_data.insert(CRATE_DEF_ID, directive);
1865 }
1866
1867 let root_parent_scope = ParentScope::module(graph_root, resolver.arenas);
1868 resolver.invocation_parent_scopes.insert(LocalExpnId::ROOT, root_parent_scope);
1869 resolver.feed_visibility(crate_feed, Visibility::Public);
1870
1871 resolver
1872 }
1873
1874 fn new_local_module(
1875 &mut self,
1876 parent: Option<LocalModule<'ra>>,
1877 kind: ModuleKind,
1878 expn_id: ExpnId,
1879 span: Span,
1880 no_implicit_prelude: bool,
1881 ) -> LocalModule<'ra> {
1882 let vis =
1883 kind.opt_def_id().map_or(Visibility::Public, |def_id| self.tcx.visibility(def_id));
1884 let module =
1885 LocalModule::new(parent, kind, vis, expn_id, span, no_implicit_prelude, self.arenas);
1886 self.local_modules.push(module);
1887 if let Some(def_id) = module.opt_def_id() {
1888 self.local_module_map.insert(def_id.expect_local(), module);
1889 }
1890 module
1891 }
1892
1893 fn next_node_id(&mut self) -> NodeId {
1894 let start = self.next_node_id;
1895 let next = start.as_u32().checked_add(1).expect("input too large; ran out of NodeIds");
1896 self.next_node_id = ast::NodeId::from_u32(next);
1897 start
1898 }
1899
1900 fn next_node_ids(&mut self, count: usize) -> std::ops::Range<NodeId> {
1901 let start = self.next_node_id;
1902 let end = start.as_usize().checked_add(count).expect("input too large; ran out of NodeIds");
1903 self.next_node_id = ast::NodeId::from_usize(end);
1904 start..self.next_node_id
1905 }
1906
1907 pub fn lint_buffer(&mut self) -> &mut LintBuffer {
1908 &mut self.lint_buffer
1909 }
1910
1911 pub fn arenas() -> ResolverArenas<'ra> {
1912 Default::default()
1913 }
1914
1915 fn feed_visibility(&mut self, feed: TyCtxtFeed<'tcx, LocalDefId>, vis: Visibility) {
1916 feed.visibility(vis.to_mod_id());
1917 self.visibilities_for_hashing.push((feed.def_id(), vis));
1918 }
1919
1920 pub fn into_outputs(self) -> ResolverOutputs<'tcx> {
1921 let proc_macros = self.proc_macros;
1922 let expn_that_defined = self.expn_that_defined;
1923 let extern_crate_map = self.extern_crate_map;
1924 let maybe_unused_trait_imports = self.maybe_unused_trait_imports;
1925 let glob_map = self.glob_map;
1926 let main_def = self.main_def;
1927 let confused_type_with_std_module = self.confused_type_with_std_module;
1928 let effective_visibilities = self.effective_visibilities;
1929
1930 let stripped_cfg_items = self
1931 .stripped_cfg_items
1932 .into_iter()
1933 .filter_map(|item| {
1934 let parent_scope = self.owners.get(&item.parent_scope)?.def_id.to_def_id();
1935 Some(StrippedCfgItem { parent_scope, ident: item.ident, cfg: item.cfg })
1936 })
1937 .collect();
1938 let disambiguators = self
1939 .disambiguators
1940 .into_items()
1941 .map(|(def_id, disamb)| (def_id, Steal::new(disamb)))
1942 .collect();
1943
1944 let global_ctxt = ResolverGlobalCtxt {
1945 expn_that_defined,
1946 visibilities_for_hashing: self.visibilities_for_hashing,
1947 effective_visibilities,
1948 macro_reachable_adts: self.macro_reachable_adts,
1949 extern_crate_map,
1950 module_children: self.module_children,
1951 ambig_module_children: self.ambig_module_children,
1952 glob_map,
1953 maybe_unused_trait_imports,
1954 main_def,
1955 trait_impls: self.trait_impls,
1956 proc_macros,
1957 confused_type_with_std_module,
1958 doc_link_resolutions: self.doc_link_resolutions,
1959 doc_link_traits_in_scope: self.doc_link_traits_in_scope,
1960 all_macro_rules: self.all_macro_rules,
1961 stripped_cfg_items,
1962 delegation_infos: self.delegation_infos,
1963 };
1964 let ast_lowering = ty::ResolverAstLowering {
1965 partial_res_map: self.partial_res_map,
1966 next_node_id: self.next_node_id,
1967 owners: self.owners,
1968 lint_buffer: Steal::new(self.lint_buffer),
1969 disambiguators,
1970 };
1971 ResolverOutputs { global_ctxt, ast_lowering }
1972 }
1973
1974 fn cstore(&self) -> FreezeReadGuard<'_, CStore> {
1975 CStore::from_tcx(self.tcx)
1976 }
1977
1978 fn cstore_mut(&self) -> FreezeWriteGuard<'_, CStore> {
1979 CStore::from_tcx_mut(self.tcx)
1980 }
1981
1982 fn dummy_ext(&self, macro_kind: MacroKind) -> &'ra Arc<SyntaxExtension> {
1983 match macro_kind {
1984 MacroKind::Bang => self.dummy_ext_bang,
1985 MacroKind::Derive => self.dummy_ext_derive,
1986 MacroKind::Attr => self.non_macro_attr,
1987 }
1988 }
1989
1990 fn cm(&mut self) -> CmResolver<'_, 'ra, 'tcx> {
1995 CmResolver::new(self, !self.assert_speculative)
1996 }
1997
1998 fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
2000 f(self, TypeNS);
2001 f(self, ValueNS);
2002 f(self, MacroNS);
2003 }
2004
2005 fn per_ns_cm<'r, F: FnMut(CmResolver<'_, 'ra, 'tcx>, Namespace)>(
2006 mut self: CmResolver<'r, 'ra, 'tcx>,
2007 mut f: F,
2008 ) {
2009 f(self.reborrow(), TypeNS);
2010 f(self.reborrow(), ValueNS);
2011 f(self, MacroNS);
2012 }
2013
2014 fn is_builtin_macro(&self, res: Res) -> bool {
2015 self.get_macro(res).is_some_and(|ext| ext.builtin_name.is_some())
2016 }
2017
2018 fn is_specific_builtin_macro(&self, res: Res, symbol: Symbol) -> bool {
2019 self.get_macro(res).is_some_and(|ext| ext.builtin_name == Some(symbol))
2020 }
2021
2022 fn macro_def(&self, mut ctxt: SyntaxContext) -> DefId {
2023 loop {
2024 match ctxt.outer_expn_data().macro_def_id {
2025 Some(def_id) => return def_id,
2026 None => ctxt.remove_mark(),
2027 };
2028 }
2029 }
2030
2031 pub fn resolve_crate(&mut self, krate: &Crate) {
2033 self.tcx.sess.time("resolve_crate", || {
2034 self.tcx.sess.time("finalize_imports", || self.finalize_imports());
2035 let exported_ambiguities = self.tcx.sess.time("compute_effective_visibilities", || {
2036 EffectiveVisibilitiesVisitor::compute_effective_visibilities(self, krate)
2037 });
2038 self.tcx.sess.time("lint_reexports", || self.lint_reexports(exported_ambiguities));
2039 self.tcx
2040 .sess
2041 .time("finalize_macro_resolutions", || self.finalize_macro_resolutions(krate));
2042 let (use_items, use_injections) =
2043 self.tcx.sess.time("late_resolve_crate", || self.late_resolve_crate(krate));
2044 self.tcx.sess.time("resolve_main", || self.resolve_main());
2045 self.tcx.sess.time("resolve_check_unused", || self.check_unused(use_items));
2046 self.tcx
2047 .sess
2048 .time("resolve_report_errors", || self.report_errors(krate, use_injections));
2049 self.tcx
2050 .sess
2051 .time("resolve_postprocess", || self.cstore_mut().postprocess(self.tcx, krate));
2052 });
2053
2054 self.tcx.untracked().freeze_cstore();
2056 }
2057
2058 fn traits_in_scope(
2059 &mut self,
2060 current_trait: Option<Module<'ra>>,
2061 parent_scope: &ParentScope<'ra>,
2062 sp: Span,
2063 assoc_item: Option<(Symbol, Namespace)>,
2064 ) -> &'tcx [TraitCandidate<'tcx>] {
2065 let mut found_traits = Vec::new();
2066
2067 if let Some(module) = current_trait {
2068 if self.trait_may_have_item(Some(module), assoc_item) {
2069 let def_id = module.def_id();
2070 found_traits.push(TraitCandidate {
2071 def_id,
2072 import_ids: &[],
2073 lint_ambiguous: false,
2074 });
2075 }
2076 }
2077
2078 let scope_set = ScopeSet::All(TypeNS);
2079 let ctxt = Macros20NormalizedSyntaxContext::new(sp.ctxt());
2080 self.cm().visit_scopes(scope_set, parent_scope, ctxt, sp, None, |mut this, scope, _, _| {
2081 match scope {
2082 Scope::ModuleNonGlobs(module, _) => {
2083 this.get_mut().traits_in_module(module, assoc_item, &mut found_traits);
2084 }
2085 Scope::ModuleGlobs(..) => {
2086 }
2088 Scope::StdLibPrelude => {
2089 if let Some(module) = this.prelude {
2090 this.get_mut().traits_in_module(module, assoc_item, &mut found_traits);
2091 }
2092 }
2093 Scope::ExternPreludeItems
2094 | Scope::ExternPreludeFlags
2095 | Scope::ToolPrelude
2096 | Scope::BuiltinTypes => {}
2097 _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
2098 }
2099 ControlFlow::<()>::Continue(())
2100 });
2101
2102 self.tcx.hir_arena.alloc_slice(&found_traits)
2103 }
2104
2105 fn traits_in_module(
2106 &mut self,
2107 module: Module<'ra>,
2108 assoc_item: Option<(Symbol, Namespace)>,
2109 found_traits: &mut Vec<TraitCandidate<'tcx>>,
2110 ) {
2111 module.ensure_traits(self);
2112 let traits = module.traits.borrow();
2113 for &(trait_name, trait_binding, trait_module, lint_ambiguous) in
2114 traits.as_ref().unwrap().iter()
2115 {
2116 if self.trait_may_have_item(trait_module, assoc_item) {
2117 let def_id = trait_binding.res().def_id();
2118 let import_ids = self.find_transitive_imports(&trait_binding.kind, trait_name);
2119 found_traits.push(TraitCandidate { def_id, import_ids, lint_ambiguous });
2120 }
2121 }
2122 }
2123
2124 fn trait_may_have_item(
2130 &self,
2131 trait_module: Option<Module<'ra>>,
2132 assoc_item: Option<(Symbol, Namespace)>,
2133 ) -> bool {
2134 match (trait_module, assoc_item) {
2135 (Some(trait_module), Some((name, ns))) => self
2136 .resolutions(trait_module)
2137 .borrow()
2138 .iter()
2139 .any(|(key, _name_resolution)| key.ns == ns && key.ident.name == name),
2140 _ => true,
2141 }
2142 }
2143
2144 fn find_transitive_imports(
2145 &mut self,
2146 mut kind: &DeclKind<'_>,
2147 trait_name: Symbol,
2148 ) -> &'tcx [LocalDefId] {
2149 let mut import_ids: SmallVec<[LocalDefId; 1]> = ::smallvec::SmallVec::new()smallvec![];
2150 while let DeclKind::Import { import, source_decl, .. } = kind {
2151 if let Some(def_id) = import.def_id() {
2152 self.maybe_unused_trait_imports.insert(def_id);
2153 import_ids.push(def_id);
2154 }
2155 self.add_to_glob_map(*import, trait_name);
2156 kind = &source_decl.kind;
2157 }
2158
2159 self.tcx.hir_arena.alloc_slice(&import_ids)
2160 }
2161
2162 fn resolutions(&self, module: Module<'ra>) -> &'ra Resolutions<'ra> {
2163 if !module.is_local() {
2164 module.populate_on_access.call_once(|| {
2166 *module.lazy_resolutions.borrow_mut_unchecked() =
2167 self.build_reduced_graph_external(module.expect_extern());
2168 });
2169 }
2170 &module.0.0.lazy_resolutions
2171 }
2172
2173 fn resolution(
2174 &self,
2175 module: Module<'ra>,
2176 key: BindingKey,
2177 ) -> Option<Ref<'ra, NameResolution<'ra>>> {
2178 self.resolutions(module).borrow().get(&key).map(|resolution| resolution.0.borrow())
2179 }
2180
2181 #[track_caller]
2182 fn resolution_or_default(
2183 &self,
2184 module: Module<'ra>,
2185 key: BindingKey,
2186 orig_ident_span: Span,
2187 ) -> NameResolutionRef<'ra> {
2188 *self.resolutions(module).borrow_mut(self).entry(key).or_insert_with(|| {
2189 self.arenas.alloc_name_resolution(NameResolution::new(orig_ident_span))
2190 })
2191 }
2192
2193 fn matches_previous_ambiguity_error(&self, ambi: &AmbiguityError<'_>) -> bool {
2195 for ambiguity_error in &self.ambiguity_errors {
2196 if ambiguity_error.kind == ambi.kind
2198 && ambiguity_error.ident == ambi.ident
2199 && ambiguity_error.ident.span == ambi.ident.span
2200 && ambiguity_error.b1.span == ambi.b1.span
2201 && ambiguity_error.b2.span == ambi.b2.span
2202 {
2203 return true;
2204 }
2205 }
2206 false
2207 }
2208
2209 fn record_use(&mut self, ident: Ident, used_decl: Decl<'ra>, used: Used) {
2210 if let Some((b2, warning)) = used_decl.ambiguity.get() {
2211 let ambiguity_error = AmbiguityError {
2212 kind: AmbiguityKind::GlobVsGlob,
2213 ambig_vis: None,
2214 ident,
2215 b1: used_decl,
2216 b2,
2217 scope1: Scope::ModuleGlobs(used_decl.parent_module.unwrap(), None),
2218 scope2: Scope::ModuleGlobs(b2.parent_module.unwrap(), None),
2219 warning: if warning { Some(AmbiguityWarning::GlobImport) } else { None },
2220 };
2221 if !self.matches_previous_ambiguity_error(&ambiguity_error) {
2222 self.ambiguity_errors.push(ambiguity_error);
2224 }
2225 }
2226 if let DeclKind::Import { import, source_decl } = used_decl.kind {
2227 if let ImportKind::MacroUse { warn_private: true } = import.kind {
2228 let found_in_stdlib_prelude = self.prelude.is_some_and(|prelude| {
2231 let empty_module = self.empty_module;
2232 let arenas = self.arenas;
2233 self.cm()
2234 .maybe_resolve_ident_in_module(
2235 ModuleOrUniformRoot::Module(prelude),
2236 ident,
2237 MacroNS,
2238 &ParentScope::module(empty_module, arenas),
2239 None,
2240 )
2241 .is_ok()
2242 });
2243 if !found_in_stdlib_prelude {
2244 self.lint_buffer().buffer_lint(
2245 PRIVATE_MACRO_USE,
2246 import.root_id,
2247 ident.span,
2248 diagnostics::MacroIsPrivate { ident },
2249 );
2250 }
2251 }
2252 if used == Used::Scope
2255 && let Some(entry) = self.extern_prelude.get(&IdentKey::new(ident))
2256 && let Some((item_decl, _, false)) = entry.item_decl
2257 && item_decl == used_decl
2258 {
2259 return;
2260 }
2261 let old_used = self.import_use_map.entry(import).or_insert(used);
2262 if *old_used < used {
2263 *old_used = used;
2264 }
2265 if let Some(id) = import.id() {
2266 self.used_imports.insert(id);
2267 }
2268 self.add_to_glob_map(import, ident.name);
2269 self.record_use(ident, source_decl, Used::Other);
2270 }
2271 }
2272
2273 #[inline]
2274 fn add_to_glob_map(&mut self, import: Import<'_>, name: Symbol) {
2275 if let ImportKind::Glob { def_id, .. } = import.kind {
2276 self.glob_map.entry(def_id).or_default().insert(name);
2277 }
2278 }
2279
2280 fn resolve_crate_root(&self, ident: Ident) -> Module<'ra> {
2281 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2281",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2281u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("resolve_crate_root({0:?})",
ident) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("resolve_crate_root({:?})", ident);
2282 let mut ctxt = ident.span.ctxt();
2283 let mark = if ident.name == kw::DollarCrate {
2284 ctxt = ctxt.normalize_to_macro_rules();
2291 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2291",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2291u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("resolve_crate_root: marks={0:?}",
ctxt.marks().into_iter().map(|(i, t)|
(i.expn_data(), t)).collect::<Vec<_>>()) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(
2292 "resolve_crate_root: marks={:?}",
2293 ctxt.marks().into_iter().map(|(i, t)| (i.expn_data(), t)).collect::<Vec<_>>()
2294 );
2295 let mut iter = ctxt.marks().into_iter().rev().peekable();
2296 let mut result = None;
2297 while let Some(&(mark, transparency)) = iter.peek() {
2299 if transparency == Transparency::Opaque {
2300 result = Some(mark);
2301 iter.next();
2302 } else {
2303 break;
2304 }
2305 }
2306 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2306",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2306u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("resolve_crate_root: found opaque mark {0:?} {1:?}",
result, result.map(|r| r.expn_data())) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(
2307 "resolve_crate_root: found opaque mark {:?} {:?}",
2308 result,
2309 result.map(|r| r.expn_data())
2310 );
2311 for (mark, transparency) in iter {
2313 if transparency == Transparency::SemiOpaque {
2314 result = Some(mark);
2315 } else {
2316 break;
2317 }
2318 }
2319 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2319",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2319u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("resolve_crate_root: found semi-opaque mark {0:?} {1:?}",
result, result.map(|r| r.expn_data())) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(
2320 "resolve_crate_root: found semi-opaque mark {:?} {:?}",
2321 result,
2322 result.map(|r| r.expn_data())
2323 );
2324 result
2325 } else {
2326 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2326",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2326u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("resolve_crate_root: not DollarCrate")
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("resolve_crate_root: not DollarCrate");
2327 ctxt = ctxt.normalize_to_macros_2_0();
2328 ctxt.adjust(ExpnId::root())
2329 };
2330 let module = match mark {
2331 Some(def) => self.expn_def_scope(def),
2332 None => {
2333 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2333",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2333u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("resolve_crate_root({0:?}): found no mark (ident.span = {1:?})",
ident, ident.span) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(
2334 "resolve_crate_root({:?}): found no mark (ident.span = {:?})",
2335 ident, ident.span
2336 );
2337 return self.graph_root.to_module();
2338 }
2339 };
2340 let module = self.expect_module(
2341 module.opt_def_id().map_or(LOCAL_CRATE, |def_id| def_id.krate).as_def_id(),
2342 );
2343 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2343",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2343u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("resolve_crate_root({0:?}): got module {1:?} ({2:?}) (ident.span = {3:?})",
ident, module, module.name(), ident.span) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(
2344 "resolve_crate_root({:?}): got module {:?} ({:?}) (ident.span = {:?})",
2345 ident,
2346 module,
2347 module.name(),
2348 ident.span
2349 );
2350 module
2351 }
2352
2353 fn resolve_self(&self, ctxt: &mut SyntaxContext, module: Module<'ra>) -> Module<'ra> {
2354 let mut module = self.expect_module(module.nearest_parent_mod().to_def_id());
2355 while module.span.ctxt().normalize_to_macros_2_0() != *ctxt {
2356 let parent = module.parent.unwrap_or_else(|| self.expn_def_scope(ctxt.remove_mark()));
2357 module = self.expect_module(parent.nearest_parent_mod().to_def_id());
2358 }
2359 module
2360 }
2361
2362 fn record_partial_res(&mut self, node_id: NodeId, resolution: PartialRes) {
2363 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2363",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2363u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("(recording res) recording {0:?} for {1}",
resolution, node_id) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("(recording res) recording {:?} for {}", resolution, node_id);
2364 if let Some(prev_res) = self.partial_res_map.insert(node_id, resolution) {
2365 {
::core::panicking::panic_fmt(format_args!("path resolved multiple times ({0:?} before, {1:?} now)",
prev_res, resolution));
};panic!("path resolved multiple times ({prev_res:?} before, {resolution:?} now)");
2366 }
2367 }
2368
2369 fn record_pat_span(&mut self, node: NodeId, span: Span) {
2370 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/lib.rs:2370",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2370u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("(recording pat) recording {0:?} for {1:?}",
node, span) as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("(recording pat) recording {:?} for {:?}", node, span);
2371 self.pat_span_map.insert(node, span);
2372 }
2373
2374 fn is_accessible_from(&self, vis: Visibility<impl Into<DefId>>, module: Module<'ra>) -> bool {
2375 vis.is_accessible_from(module.nearest_parent_mod(), self.tcx)
2376 }
2377
2378 fn disambiguate_macro_rules_vs_modularized(
2379 &self,
2380 macro_rules: Decl<'ra>,
2381 modularized: Decl<'ra>,
2382 ) -> bool {
2383 let macro_rules = macro_rules.parent_module.unwrap();
2391 let modularized = modularized.parent_module.unwrap();
2392 macro_rules.nearest_parent_mod() == modularized.nearest_parent_mod()
2393 && modularized.is_ancestor_of(macro_rules)
2394 }
2395
2396 fn extern_prelude_get_item<'r>(
2397 mut self: CmResolver<'r, 'ra, 'tcx>,
2398 ident: IdentKey,
2399 orig_ident_span: Span,
2400 finalize: bool,
2401 ) -> Option<Decl<'ra>> {
2402 let entry = self.extern_prelude.get(&ident);
2403 entry.and_then(|entry| entry.item_decl).map(|(decl, ..)| {
2404 if finalize {
2405 self.get_mut().record_use(ident.orig(orig_ident_span), decl, Used::Scope);
2406 }
2407 decl
2408 })
2409 }
2410
2411 fn extern_prelude_get_flag(
2412 &self,
2413 ident: IdentKey,
2414 orig_ident_span: Span,
2415 finalize: bool,
2416 ) -> Option<Decl<'ra>> {
2417 let entry = self.extern_prelude.get(&ident);
2418 entry.and_then(|entry| entry.flag_decl.as_ref()).and_then(|flag_decl| {
2419 let (pending_decl, finalized, is_open) = flag_decl.get();
2420 let decl = match pending_decl {
2421 PendingDecl::Ready(decl) => {
2422 if finalize && !finalized && !is_open {
2423 self.cstore_mut().process_path_extern(
2424 self.tcx,
2425 ident.name,
2426 orig_ident_span,
2427 );
2428 }
2429 decl
2430 }
2431 PendingDecl::Pending => {
2432 if true {
if !!finalized {
::core::panicking::panic("assertion failed: !finalized")
};
};debug_assert!(!finalized);
2433 if is_open {
2434 let res = Res::OpenMod(ident.name);
2435 Some(self.arenas.new_pub_def_decl(res, DUMMY_SP, LocalExpnId::ROOT))
2436 } else {
2437 let crate_id = if finalize {
2438 self.cstore_mut().process_path_extern(
2439 self.tcx,
2440 ident.name,
2441 orig_ident_span,
2442 )
2443 } else {
2444 self.cstore_mut().maybe_process_path_extern(self.tcx, ident.name)
2445 };
2446 crate_id.map(|crate_id| {
2447 let def_id = crate_id.as_def_id();
2448 let res = Res::Def(DefKind::Mod, def_id);
2449 self.arenas.new_pub_def_decl(res, DUMMY_SP, LocalExpnId::ROOT)
2450 })
2451 }
2452 }
2453 };
2454 flag_decl.set((PendingDecl::Ready(decl), finalize || finalized, is_open));
2455 decl.or_else(|| finalize.then_some(self.dummy_decl))
2456 })
2457 }
2458
2459 fn resolve_rustdoc_path(
2464 &mut self,
2465 path_str: &str,
2466 ns: Namespace,
2467 parent_scope: ParentScope<'ra>,
2468 ) -> Option<Res> {
2469 let segments: Result<Vec<_>, ()> = path_str
2470 .split("::")
2471 .enumerate()
2472 .map(|(i, s)| {
2473 let sym = if s.is_empty() {
2474 if i == 0 {
2475 kw::PathRoot
2477 } else {
2478 return Err(()); }
2480 } else {
2481 Symbol::intern(s)
2482 };
2483 Ok(Segment::from_ident(Ident::with_dummy_span(sym)))
2484 })
2485 .collect();
2486 let Ok(segments) = segments else { return None };
2487
2488 match self.cm().maybe_resolve_path(&segments, Some(ns), &parent_scope, None) {
2489 PathResult::Module(ModuleOrUniformRoot::Module(module)) => Some(module.res().unwrap()),
2490 PathResult::NonModule(path_res) => {
2491 path_res.full_res().filter(|res| !#[allow(non_exhaustive_omitted_patterns)] match res {
Res::Def(DefKind::Ctor(..), _) => true,
_ => false,
}matches!(res, Res::Def(DefKind::Ctor(..), _)))
2492 }
2493 PathResult::Module(ModuleOrUniformRoot::ExternPrelude) | PathResult::Failed { .. } => {
2494 None
2495 }
2496 path_result @ (PathResult::Module(..) | PathResult::Indeterminate) => {
2497 ::rustc_middle::util::bug::bug_fmt(format_args!("got invalid path_result: {0:?}",
path_result))bug!("got invalid path_result: {path_result:?}")
2498 }
2499 }
2500 }
2501
2502 fn def_span(&self, def_id: DefId) -> Span {
2504 match def_id.as_local() {
2505 Some(def_id) => self.tcx.source_span(def_id),
2506 None => self.cstore().def_span_untracked(self.tcx(), def_id),
2508 }
2509 }
2510
2511 fn field_idents(&self, def_id: DefId) -> Option<Vec<Ident>> {
2512 match def_id.as_local() {
2513 Some(def_id) => self.field_names.get(&def_id).cloned(),
2514 None if #[allow(non_exhaustive_omitted_patterns)] match self.tcx.def_kind(def_id) {
DefKind::Struct | DefKind::Union | DefKind::Variant => true,
_ => false,
}matches!(
2515 self.tcx.def_kind(def_id),
2516 DefKind::Struct | DefKind::Union | DefKind::Variant
2517 ) =>
2518 {
2519 Some(
2520 self.tcx
2521 .associated_item_def_ids(def_id)
2522 .iter()
2523 .map(|&def_id| {
2524 Ident::new(self.tcx.item_name(def_id), self.tcx.def_span(def_id))
2525 })
2526 .collect(),
2527 )
2528 }
2529 _ => None,
2530 }
2531 }
2532
2533 fn field_defaults(&self, def_id: DefId) -> Option<Vec<Symbol>> {
2534 match def_id.as_local() {
2535 Some(def_id) => self.field_defaults.get(&def_id).cloned(),
2536 None if #[allow(non_exhaustive_omitted_patterns)] match self.tcx.def_kind(def_id) {
DefKind::Struct | DefKind::Union | DefKind::Variant => true,
_ => false,
}matches!(
2537 self.tcx.def_kind(def_id),
2538 DefKind::Struct | DefKind::Union | DefKind::Variant
2539 ) =>
2540 {
2541 Some(
2542 self.tcx
2543 .associated_item_def_ids(def_id)
2544 .iter()
2545 .filter_map(|&def_id| {
2546 self.tcx.default_field(def_id).map(|_| self.tcx.item_name(def_id))
2547 })
2548 .collect(),
2549 )
2550 }
2551 _ => None,
2552 }
2553 }
2554
2555 fn legacy_const_generic_args(&mut self, expr: &Expr) -> Option<Vec<usize>> {
2559 let ExprKind::Path(None, path) = &expr.kind else {
2560 return None;
2561 };
2562 if path.segments.last().unwrap().args.is_some() {
2565 return None;
2566 }
2567
2568 let def_id = self.partial_res_map.get(&expr.id)?.full_res()?.opt_def_id()?;
2569
2570 if def_id.is_local() {
2574 return None;
2575 }
2576
2577 {
{
'done:
{
for i in
::rustc_hir::attrs::HasAttrs::get_attrs(def_id, &self.tcx) {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(RustcLegacyConstGenerics {
fn_indexes, .. }) => {
break 'done Some(fn_indexes);
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}
}find_attr!(
2578 self.tcx, def_id,
2580 RustcLegacyConstGenerics{fn_indexes,..} => fn_indexes
2581 )
2582 .map(|fn_indexes| fn_indexes.iter().map(|(num, _)| *num).collect())
2583 }
2584
2585 fn resolve_main(&mut self) {
2586 let any_exe = self.tcx.crate_types().contains(&CrateType::Executable);
2587 if !any_exe {
2589 return;
2590 }
2591
2592 let module = self.graph_root;
2593 let ident = Ident::with_dummy_span(sym::main);
2594 let parent_scope = &ParentScope::module(module, self.arenas);
2595
2596 let Ok(name_binding) = self.cm().maybe_resolve_ident_in_module(
2597 ModuleOrUniformRoot::Module(module.to_module()),
2598 ident,
2599 ValueNS,
2600 parent_scope,
2601 None,
2602 ) else {
2603 return;
2604 };
2605
2606 let res = name_binding.res();
2607 let is_import = name_binding.is_import();
2608 let span = name_binding.span;
2609 if let Res::Def(DefKind::Fn, _) = res {
2610 self.record_use(ident, name_binding, Used::Other);
2611 }
2612 self.main_def = Some(MainDefinition { res, is_import, span });
2613 }
2614}
2615
2616fn with_owner<'ra, 'tcx, R: AsMut<Resolver<'ra, 'tcx>>, T>(
2617 this: &mut R,
2618 owner: NodeId,
2619 work: impl FnOnce(&mut R) -> T,
2620) -> T {
2621 let tables = this.as_mut().owners.remove(&owner).unwrap();
2622 with_owner_tables(this, owner, tables, work)
2623}
2624
2625#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("with_owner_tables",
"rustc_resolve", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/lib.rs"),
::tracing_core::__macro_support::Option::Some(2625u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("owner")
}> =
::tracing::__macro_support::FieldName::new("owner");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("tables")
}> =
::tracing::__macro_support::FieldName::new("tables");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&owner)
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&tables)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: T = loop {};
return __tracing_attr_fake_return;
}
{
if true {
if !!this.as_mut().owners.contains_key(&owner) {
::core::panicking::panic("assertion failed: !this.as_mut().owners.contains_key(&owner)")
};
};
let resolver = this.as_mut();
let old_owner = mem::replace(&mut resolver.current_owner, tables);
let ret = work(this);
let resolver = this.as_mut();
let overwritten =
resolver.owners.insert(owner,
mem::replace(&mut resolver.current_owner, old_owner));
if !overwritten.is_none() {
::core::panicking::panic("assertion failed: overwritten.is_none()")
};
ret
}
}
}#[instrument(level = "debug", skip(this, work))]
2626fn with_owner_tables<'ra, 'tcx, R: AsMut<Resolver<'ra, 'tcx>>, T>(
2627 this: &mut R,
2628 owner: NodeId,
2629 tables: PerOwnerResolverData<'tcx>,
2630 work: impl FnOnce(&mut R) -> T,
2631) -> T {
2632 debug_assert!(!this.as_mut().owners.contains_key(&owner));
2633 let resolver = this.as_mut();
2634 let old_owner = mem::replace(&mut resolver.current_owner, tables);
2635 let ret = work(this);
2636 let resolver = this.as_mut();
2637 let overwritten =
2638 resolver.owners.insert(owner, mem::replace(&mut resolver.current_owner, old_owner));
2639 assert!(overwritten.is_none());
2640 ret
2641}
2642
2643fn build_extern_prelude<'tcx, 'ra>(
2644 tcx: TyCtxt<'tcx>,
2645 attrs: &[ast::Attribute],
2646) -> FxIndexMap<IdentKey, ExternPreludeEntry<'ra>> {
2647 let mut extern_prelude: FxIndexMap<IdentKey, ExternPreludeEntry<'ra>> = tcx
2648 .sess
2649 .opts
2650 .externs
2651 .iter()
2652 .filter_map(|(name, entry)| {
2653 if entry.add_prelude
2656 && let sym = Symbol::intern(name)
2657 && sym.can_be_raw()
2658 {
2659 Some((IdentKey::with_root_ctxt(sym), ExternPreludeEntry::flag()))
2660 } else {
2661 None
2662 }
2663 })
2664 .collect();
2665
2666 let missing_open_bases: Vec<IdentKey> = extern_prelude
2672 .keys()
2673 .filter_map(|ident| {
2674 let (base, _) = ident.name.as_str().split_once("::")?;
2675 let base_sym = Symbol::intern(base);
2676 base_sym.can_be_raw().then(|| IdentKey::with_root_ctxt(base_sym))
2677 })
2678 .filter(|base_ident| !extern_prelude.contains_key(base_ident))
2679 .collect();
2680
2681 extern_prelude.extend(
2682 missing_open_bases.into_iter().map(|ident| (ident, ExternPreludeEntry::open_flag())),
2683 );
2684
2685 if !attr::contains_name(attrs, sym::no_core) {
2687 extern_prelude.insert(IdentKey::with_root_ctxt(sym::core), ExternPreludeEntry::flag());
2688
2689 if !attr::contains_name(attrs, sym::no_std) {
2690 extern_prelude.insert(IdentKey::with_root_ctxt(sym::std), ExternPreludeEntry::flag());
2691 }
2692 }
2693
2694 extern_prelude
2695}
2696
2697fn names_to_string(names: impl Iterator<Item = Symbol>) -> String {
2698 let mut result = String::new();
2699 for (i, name) in names.enumerate().filter(|(_, name)| *name != kw::PathRoot) {
2700 if i > 0 {
2701 result.push_str("::");
2702 }
2703 if Ident::with_dummy_span(name).is_raw_guess() {
2704 result.push_str("r#");
2705 }
2706 result.push_str(name.as_str());
2707 }
2708 result
2709}
2710
2711fn path_names_to_string(path: &Path) -> String {
2712 names_to_string(path.segments.iter().map(|seg| seg.ident.name))
2713}
2714
2715fn module_to_string(mut module: Module<'_>) -> Option<String> {
2717 let mut names = Vec::new();
2718 while let Some(parent) = module.parent {
2719 names.push(module.name().unwrap_or(sym::opaque_module_name_placeholder));
2720 module = parent;
2721 }
2722 if names.is_empty() {
2723 return None;
2724 }
2725 Some(names_to_string(names.iter().rev().copied()))
2726}
2727
2728#[derive(#[automatically_derived]
impl ::core::marker::Copy for Stage { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Stage {
#[inline]
fn clone(&self) -> Stage { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for Stage {
#[inline]
fn eq(&self, other: &Stage) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for Stage {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self { Stage::Early => "Early", Stage::Late => "Late", })
}
}Debug)]
2729enum Stage {
2730 Early,
2734 Late,
2737}
2738
2739#[derive(#[automatically_derived]
impl ::core::marker::Copy for ImportSummary { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ImportSummary {
#[inline]
fn clone(&self) -> ImportSummary {
let _: ::core::clone::AssertParamIsClone<Visibility>;
let _: ::core::clone::AssertParamIsClone<LocalModId>;
let _: ::core::clone::AssertParamIsClone<bool>;
let _: ::core::clone::AssertParamIsClone<Span>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ImportSummary {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field5_finish(f, "ImportSummary",
"vis", &self.vis, "nearest_parent_mod", &self.nearest_parent_mod,
"is_single", &self.is_single, "priv_macro_use",
&self.priv_macro_use, "span", &&self.span)
}
}Debug)]
2742struct ImportSummary {
2743 vis: Visibility,
2744 nearest_parent_mod: LocalModId,
2745 is_single: bool,
2746 priv_macro_use: bool,
2747 span: Span,
2748}
2749
2750#[derive(#[automatically_derived]
impl ::core::marker::Copy for Finalize { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Finalize {
#[inline]
fn clone(&self) -> Finalize {
let _: ::core::clone::AssertParamIsClone<NodeId>;
let _: ::core::clone::AssertParamIsClone<Span>;
let _: ::core::clone::AssertParamIsClone<bool>;
let _: ::core::clone::AssertParamIsClone<Used>;
let _: ::core::clone::AssertParamIsClone<Stage>;
let _: ::core::clone::AssertParamIsClone<Option<ImportSummary>>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for Finalize {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["node_id", "path_span", "root_span", "report_private", "used",
"stage", "import"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.node_id, &self.path_span, &self.root_span,
&self.report_private, &self.used, &self.stage,
&&self.import];
::core::fmt::Formatter::debug_struct_fields_finish(f, "Finalize",
names, values)
}
}Debug)]
2752struct Finalize {
2753 node_id: NodeId,
2755 path_span: Span,
2758 root_span: Span,
2761 report_private: bool = true,
2764 used: Used = Used::Other,
2766 stage: Stage = Stage::Early,
2768 import: Option<ImportSummary> = None,
2770}
2771
2772impl Finalize {
2773 fn new(node_id: NodeId, path_span: Span) -> Finalize {
2774 Finalize::with_root_span(node_id, path_span, path_span)
2775 }
2776
2777 fn with_root_span(node_id: NodeId, path_span: Span, root_span: Span) -> Finalize {
2778 Finalize { node_id, path_span, root_span, .. }
2779 }
2780}
2781
2782pub fn provide(providers: &mut Providers) {
2783 providers.registered_tools = macros::registered_tools;
2784}
2785
2786type CmResolver<'r, 'ra, 'tcx> = ref_mut::RefOrMut<'r, Resolver<'ra, 'tcx>>;
2792
2793use std::cell::{Cell as CacheCell, RefCell as CacheRefCell};
2797
2798mod ref_mut {
2799 use std::cell::{BorrowMutError, Cell, Ref, RefCell, RefMut};
2800 use std::fmt;
2801 use std::marker::PhantomData;
2802 use std::ops::Deref;
2803
2804 use crate::Resolver;
2805
2806 pub(crate) struct RefOrMut<'a, T> {
2808 p: *mut T,
2812 mutable: bool,
2813 _marker: PhantomData<&'a mut T>,
2814 }
2815
2816 impl<'a, T> Deref for RefOrMut<'a, T> {
2817 type Target = T;
2818
2819 fn deref(&self) -> &Self::Target {
2820 unsafe { self.p.as_ref_unchecked() }
2822 }
2823 }
2824
2825 impl<'a, T> AsRef<T> for RefOrMut<'a, T> {
2826 fn as_ref(&self) -> &T {
2827 unsafe { self.p.as_ref_unchecked() }
2829 }
2830 }
2831
2832 impl<'a, T> RefOrMut<'a, T> {
2833 pub(crate) fn new(p: &'a mut T, mutable: bool) -> Self {
2834 RefOrMut { p, mutable, _marker: PhantomData }
2835 }
2836
2837 pub(crate) fn reborrow_ref(&self) -> RefOrMut<'_, T> {
2838 if !!self.mutable {
{
::core::panicking::panic_fmt(format_args!("Tried to reborrow a mutable `RefOrMut` through shared reference."));
}
};assert!(
2839 !self.mutable,
2840 "Tried to reborrow a mutable `RefOrMut` through shared reference."
2841 );
2842 RefOrMut { p: self.p, mutable: self.mutable, _marker: PhantomData }
2843 }
2844
2845 pub(crate) fn reborrow(&mut self) -> RefOrMut<'_, T> {
2847 RefOrMut { p: self.p, mutable: self.mutable, _marker: PhantomData }
2848 }
2849
2850 #[track_caller]
2856 pub(crate) fn get_mut(&mut self) -> &mut T {
2857 match self.mutable {
2858 false => {
::core::panicking::panic_fmt(format_args!("can\'t mutably borrow speculative resolver"));
}panic!("can't mutably borrow speculative resolver"),
2859 true => unsafe { self.p.as_mut_unchecked() },
2863 }
2864 }
2865 }
2866
2867 #[derive(#[automatically_derived]
impl<T: ::core::default::Default> ::core::default::Default for CmCell<T> {
#[inline]
fn default() -> CmCell<T> { CmCell(::core::default::Default::default()) }
}Default)]
2869 pub(crate) struct CmCell<T>(Cell<T>);
2870
2871 impl<T: Copy + fmt::Debug> fmt::Debug for CmCell<T> {
2872 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2873 f.debug_tuple("CmCell").field(&self.get()).finish()
2874 }
2875 }
2876
2877 impl<T: Copy> Clone for CmCell<T> {
2878 fn clone(&self) -> CmCell<T> {
2879 CmCell::new(self.get())
2880 }
2881 }
2882
2883 impl<T: Copy> CmCell<T> {
2884 pub(crate) const fn get(&self) -> T {
2885 self.0.get()
2886 }
2887
2888 pub(crate) fn update<'ra, 'tcx>(&self, r: &Resolver<'ra, 'tcx>, f: impl FnOnce(T) -> T)
2889 where
2890 T: Copy,
2891 {
2892 let old = self.get();
2893 self.set(f(old), r);
2894 }
2895 }
2896
2897 impl<T> CmCell<T> {
2898 pub(crate) const fn new(value: T) -> CmCell<T> {
2899 CmCell(Cell::new(value))
2900 }
2901
2902 pub(crate) fn set<'ra, 'tcx>(&self, val: T, r: &Resolver<'ra, 'tcx>) {
2903 if r.assert_speculative {
2904 {
::core::panicking::panic_fmt(format_args!("not allowed to mutate a `CmCell` during speculative resolution"));
}panic!("not allowed to mutate a `CmCell` during speculative resolution")
2905 }
2906 self.0.set(val);
2907 }
2908
2909 pub(crate) fn into_inner(self) -> T {
2910 self.0.into_inner()
2911 }
2912 }
2913
2914 #[derive(#[automatically_derived]
impl<T: ::core::default::Default> ::core::default::Default for CmRefCell<T> {
#[inline]
fn default() -> CmRefCell<T> {
CmRefCell(::core::default::Default::default())
}
}Default)]
2916 pub(crate) struct CmRefCell<T>(RefCell<T>);
2917
2918 impl<T> CmRefCell<T> {
2919 pub(crate) fn new(value: T) -> CmRefCell<T> {
2920 CmRefCell(RefCell::new(value))
2921 }
2922
2923 #[track_caller]
2924 pub(crate) fn borrow_mut_unchecked(&self) -> RefMut<'_, T> {
2927 self.0.borrow_mut()
2928 }
2929
2930 #[track_caller]
2931 pub(crate) fn borrow_mut<'ra, 'tcx>(&self, r: &Resolver<'ra, 'tcx>) -> RefMut<'_, T> {
2932 if r.assert_speculative {
2933 {
::core::panicking::panic_fmt(format_args!("not allowed to mutably borrow a `CmRefCell` during speculative resolution"));
};panic!("not allowed to mutably borrow a `CmRefCell` during speculative resolution");
2934 }
2935 self.0.borrow_mut()
2936 }
2937
2938 #[track_caller]
2939 pub(crate) fn try_borrow_mut<'ra, 'tcx>(
2940 &self,
2941 r: &Resolver<'ra, 'tcx>,
2942 ) -> Result<RefMut<'_, T>, BorrowMutError> {
2943 if r.assert_speculative {
2944 {
::core::panicking::panic_fmt(format_args!("not allowed to mutably borrow a `CmRefCell` during speculative resolution"));
};panic!("not allowed to mutably borrow a `CmRefCell` during speculative resolution");
2945 }
2946 self.0.try_borrow_mut()
2947 }
2948
2949 #[track_caller]
2950 pub(crate) fn borrow(&self) -> Ref<'_, T> {
2951 self.0.borrow()
2952 }
2953 }
2954
2955 impl<T: Default> CmRefCell<T> {
2956 pub(crate) fn take<'ra, 'tcx>(&self, r: &Resolver<'ra, 'tcx>) -> T {
2957 if r.assert_speculative {
2958 {
::core::panicking::panic_fmt(format_args!("not allowed to mutate a CmRefCell during speculative resolution"));
};panic!("not allowed to mutate a CmRefCell during speculative resolution");
2959 }
2960 self.0.take()
2961 }
2962 }
2963}
2964
2965mod hygiene {
2966 use rustc_span::{ExpnId, SyntaxContext};
2967
2968 #[derive(#[automatically_derived]
impl ::core::clone::Clone for Macros20NormalizedSyntaxContext {
#[inline]
fn clone(&self) -> Macros20NormalizedSyntaxContext {
let _: ::core::clone::AssertParamIsClone<SyntaxContext>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for Macros20NormalizedSyntaxContext { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for Macros20NormalizedSyntaxContext {
#[inline]
fn eq(&self, other: &Macros20NormalizedSyntaxContext) -> bool {
self.0 == other.0
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Macros20NormalizedSyntaxContext {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<SyntaxContext>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for Macros20NormalizedSyntaxContext {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.0, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for Macros20NormalizedSyntaxContext {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"Macros20NormalizedSyntaxContext", &&self.0)
}
}Debug)]
2971 pub(crate) struct Macros20NormalizedSyntaxContext(SyntaxContext);
2972
2973 impl Macros20NormalizedSyntaxContext {
2974 #[inline]
2975 pub(crate) fn new(ctxt: SyntaxContext) -> Macros20NormalizedSyntaxContext {
2976 Macros20NormalizedSyntaxContext(ctxt.normalize_to_macros_2_0())
2977 }
2978
2979 #[inline]
2980 pub(crate) fn new_adjusted(
2981 mut ctxt: SyntaxContext,
2982 expn_id: ExpnId,
2983 ) -> (Macros20NormalizedSyntaxContext, Option<ExpnId>) {
2984 let def = ctxt.normalize_to_macros_2_0_and_adjust(expn_id);
2985 (Macros20NormalizedSyntaxContext(ctxt), def)
2986 }
2987
2988 #[inline]
2989 pub(crate) fn new_unchecked(ctxt: SyntaxContext) -> Macros20NormalizedSyntaxContext {
2990 if true {
{
match (&ctxt, &ctxt.normalize_to_macros_2_0()) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
};debug_assert_eq!(ctxt, ctxt.normalize_to_macros_2_0());
2991 Macros20NormalizedSyntaxContext(ctxt)
2992 }
2993
2994 #[inline]
2996 pub(crate) fn update_unchecked<R>(&mut self, f: impl FnOnce(&mut SyntaxContext) -> R) -> R {
2997 let ret = f(&mut self.0);
2998 if true {
{
match (&self.0, &self.0.normalize_to_macros_2_0()) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};
};debug_assert_eq!(self.0, self.0.normalize_to_macros_2_0());
2999 ret
3000 }
3001 }
3002
3003 impl std::ops::Deref for Macros20NormalizedSyntaxContext {
3004 type Target = SyntaxContext;
3005 fn deref(&self) -> &Self::Target {
3006 &self.0
3007 }
3008 }
3009}