1use std::mem;
4
5use rustc_ast::NodeId;
6use rustc_data_structures::fx::{FxHashSet, FxIndexSet};
7use rustc_data_structures::intern::Interned;
8use rustc_errors::codes::*;
9use rustc_errors::{Applicability, MultiSpan, pluralize, struct_span_code_err};
10use rustc_hir::def::{self, DefKind, PartialRes};
11use rustc_hir::def_id::{DefId, LocalDefIdMap};
12use rustc_middle::metadata::{AmbigModChild, ModChild, Reexport};
13use rustc_middle::span_bug;
14use rustc_middle::ty::Visibility;
15use rustc_session::lint::BuiltinLintDiag;
16use rustc_session::lint::builtin::{
17 AMBIGUOUS_GLOB_REEXPORTS, EXPORTED_PRIVATE_DEPENDENCIES, HIDDEN_GLOB_REEXPORTS,
18 PUB_USE_OF_PRIVATE_EXTERN_CRATE, REDUNDANT_IMPORTS, UNUSED_IMPORTS,
19};
20use rustc_session::parse::feature_err;
21use rustc_span::edit_distance::find_best_match_for_name;
22use rustc_span::hygiene::LocalExpnId;
23use rustc_span::{Ident, Span, Symbol, kw, sym};
24use tracing::debug;
25
26use crate::Namespace::{self, *};
27use crate::diagnostics::{DiagMode, Suggestion, import_candidates};
28use crate::errors::{
29 CannotBeReexportedCratePublic, CannotBeReexportedCratePublicNS, CannotBeReexportedPrivate,
30 CannotBeReexportedPrivateNS, CannotDetermineImportResolution, CannotGlobImportAllCrates,
31 ConsiderAddingMacroExport, ConsiderMarkingAsPub, ConsiderMarkingAsPubCrate,
32};
33use crate::ref_mut::CmCell;
34use crate::{
35 AmbiguityError, BindingKey, CmResolver, Decl, DeclData, DeclKind, Determinacy, Finalize,
36 IdentKey, ImportSuggestion, Module, ModuleOrUniformRoot, ParentScope, PathResult, PerNS,
37 ResolutionError, Resolver, ScopeSet, Segment, Used, module_to_string, names_to_string,
38};
39
40type Res = def::Res<NodeId>;
41
42#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for PendingDecl<'ra> {
#[inline]
fn clone(&self) -> PendingDecl<'ra> {
let _: ::core::clone::AssertParamIsClone<Option<Decl<'ra>>>;
*self
}
}Clone, #[automatically_derived]
impl<'ra> ::core::marker::Copy for PendingDecl<'ra> { }Copy, #[automatically_derived]
impl<'ra> ::core::default::Default for PendingDecl<'ra> {
#[inline]
fn default() -> PendingDecl<'ra> { Self::Pending }
}Default, #[automatically_derived]
impl<'ra> ::core::cmp::PartialEq for PendingDecl<'ra> {
#[inline]
fn eq(&self, other: &PendingDecl<'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) {
(PendingDecl::Ready(__self_0), PendingDecl::Ready(__arg1_0))
=> __self_0 == __arg1_0,
_ => true,
}
}
}PartialEq)]
45pub(crate) enum PendingDecl<'ra> {
46 Ready(Option<Decl<'ra>>),
47 #[default]
48 Pending,
49}
50
51impl<'ra> PendingDecl<'ra> {
52 pub(crate) fn decl(self) -> Option<Decl<'ra>> {
53 match self {
54 PendingDecl::Ready(decl) => decl,
55 PendingDecl::Pending => None,
56 }
57 }
58}
59
60#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for ImportKind<'ra> {
#[inline]
fn clone(&self) -> ImportKind<'ra> {
match self {
ImportKind::Single {
source: __self_0,
target: __self_1,
decls: __self_2,
type_ns_only: __self_3,
nested: __self_4,
id: __self_5 } =>
ImportKind::Single {
source: ::core::clone::Clone::clone(__self_0),
target: ::core::clone::Clone::clone(__self_1),
decls: ::core::clone::Clone::clone(__self_2),
type_ns_only: ::core::clone::Clone::clone(__self_3),
nested: ::core::clone::Clone::clone(__self_4),
id: ::core::clone::Clone::clone(__self_5),
},
ImportKind::Glob { max_vis: __self_0, id: __self_1 } =>
ImportKind::Glob {
max_vis: ::core::clone::Clone::clone(__self_0),
id: ::core::clone::Clone::clone(__self_1),
},
ImportKind::ExternCrate {
source: __self_0, target: __self_1, id: __self_2 } =>
ImportKind::ExternCrate {
source: ::core::clone::Clone::clone(__self_0),
target: ::core::clone::Clone::clone(__self_1),
id: ::core::clone::Clone::clone(__self_2),
},
ImportKind::MacroUse { warn_private: __self_0 } =>
ImportKind::MacroUse {
warn_private: ::core::clone::Clone::clone(__self_0),
},
ImportKind::MacroExport => ImportKind::MacroExport,
}
}
}Clone)]
62pub(crate) enum ImportKind<'ra> {
63 Single {
64 source: Ident,
66 target: Ident,
69 decls: PerNS<CmCell<PendingDecl<'ra>>>,
71 type_ns_only: bool,
73 nested: bool,
75 id: NodeId,
87 },
88 Glob {
89 max_vis: CmCell<Option<Visibility>>,
92 id: NodeId,
93 },
94 ExternCrate {
95 source: Option<Symbol>,
96 target: Ident,
97 id: NodeId,
98 },
99 MacroUse {
100 warn_private: bool,
103 },
104 MacroExport,
105}
106
107impl<'ra> std::fmt::Debug for ImportKind<'ra> {
110 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
111 use ImportKind::*;
112 match self {
113 Single { source, target, decls, type_ns_only, nested, id, .. } => f
114 .debug_struct("Single")
115 .field("source", source)
116 .field("target", target)
117 .field(
119 "decls",
120 &decls.clone().map(|b| b.into_inner().decl().map(|_| format_args!("..")format_args!(".."))),
121 )
122 .field("type_ns_only", type_ns_only)
123 .field("nested", nested)
124 .field("id", id)
125 .finish(),
126 Glob { max_vis, id } => {
127 f.debug_struct("Glob").field("max_vis", max_vis).field("id", id).finish()
128 }
129 ExternCrate { source, target, id } => f
130 .debug_struct("ExternCrate")
131 .field("source", source)
132 .field("target", target)
133 .field("id", id)
134 .finish(),
135 MacroUse { warn_private } => {
136 f.debug_struct("MacroUse").field("warn_private", warn_private).finish()
137 }
138 MacroExport => f.debug_struct("MacroExport").finish(),
139 }
140 }
141}
142
143#[derive(#[automatically_derived]
impl<'ra> ::core::fmt::Debug for ImportData<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["kind", "root_id", "use_span", "use_span_with_attributes",
"has_attributes", "span", "root_span", "parent_scope",
"module_path", "imported_module", "vis", "vis_span"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.kind, &self.root_id, &self.use_span,
&self.use_span_with_attributes, &self.has_attributes,
&self.span, &self.root_span, &self.parent_scope,
&self.module_path, &self.imported_module, &self.vis,
&&self.vis_span];
::core::fmt::Formatter::debug_struct_fields_finish(f, "ImportData",
names, values)
}
}Debug, #[automatically_derived]
impl<'ra> ::core::clone::Clone for ImportData<'ra> {
#[inline]
fn clone(&self) -> ImportData<'ra> {
ImportData {
kind: ::core::clone::Clone::clone(&self.kind),
root_id: ::core::clone::Clone::clone(&self.root_id),
use_span: ::core::clone::Clone::clone(&self.use_span),
use_span_with_attributes: ::core::clone::Clone::clone(&self.use_span_with_attributes),
has_attributes: ::core::clone::Clone::clone(&self.has_attributes),
span: ::core::clone::Clone::clone(&self.span),
root_span: ::core::clone::Clone::clone(&self.root_span),
parent_scope: ::core::clone::Clone::clone(&self.parent_scope),
module_path: ::core::clone::Clone::clone(&self.module_path),
imported_module: ::core::clone::Clone::clone(&self.imported_module),
vis: ::core::clone::Clone::clone(&self.vis),
vis_span: ::core::clone::Clone::clone(&self.vis_span),
}
}
}Clone)]
145pub(crate) struct ImportData<'ra> {
146 pub kind: ImportKind<'ra>,
147
148 pub root_id: NodeId,
158
159 pub use_span: Span,
161
162 pub use_span_with_attributes: Span,
164
165 pub has_attributes: bool,
167
168 pub span: Span,
170
171 pub root_span: Span,
173
174 pub parent_scope: ParentScope<'ra>,
175 pub module_path: Vec<Segment>,
176 pub imported_module: CmCell<Option<ModuleOrUniformRoot<'ra>>>,
185 pub vis: Visibility,
186
187 pub vis_span: Span,
189}
190
191pub(crate) type Import<'ra> = Interned<'ra, ImportData<'ra>>;
194
195impl std::hash::Hash for ImportData<'_> {
200 fn hash<H>(&self, _: &mut H)
201 where
202 H: std::hash::Hasher,
203 {
204 ::core::panicking::panic("internal error: entered unreachable code")unreachable!()
205 }
206}
207
208impl<'ra> ImportData<'ra> {
209 pub(crate) fn is_glob(&self) -> bool {
210 #[allow(non_exhaustive_omitted_patterns)] match self.kind {
ImportKind::Glob { .. } => true,
_ => false,
}matches!(self.kind, ImportKind::Glob { .. })
211 }
212
213 pub(crate) fn is_nested(&self) -> bool {
214 match self.kind {
215 ImportKind::Single { nested, .. } => nested,
216 _ => false,
217 }
218 }
219
220 pub(crate) fn id(&self) -> Option<NodeId> {
221 match self.kind {
222 ImportKind::Single { id, .. }
223 | ImportKind::Glob { id, .. }
224 | ImportKind::ExternCrate { id, .. } => Some(id),
225 ImportKind::MacroUse { .. } | ImportKind::MacroExport => None,
226 }
227 }
228
229 pub(crate) fn simplify(&self, r: &Resolver<'_, '_>) -> Reexport {
230 let to_def_id = |id| r.local_def_id(id).to_def_id();
231 match self.kind {
232 ImportKind::Single { id, .. } => Reexport::Single(to_def_id(id)),
233 ImportKind::Glob { id, .. } => Reexport::Glob(to_def_id(id)),
234 ImportKind::ExternCrate { id, .. } => Reexport::ExternCrate(to_def_id(id)),
235 ImportKind::MacroUse { .. } => Reexport::MacroUse,
236 ImportKind::MacroExport => Reexport::MacroExport,
237 }
238 }
239}
240
241#[derive(#[automatically_derived]
impl<'ra> ::core::clone::Clone for NameResolution<'ra> {
#[inline]
fn clone(&self) -> NameResolution<'ra> {
NameResolution {
single_imports: ::core::clone::Clone::clone(&self.single_imports),
non_glob_decl: ::core::clone::Clone::clone(&self.non_glob_decl),
glob_decl: ::core::clone::Clone::clone(&self.glob_decl),
orig_ident_span: ::core::clone::Clone::clone(&self.orig_ident_span),
}
}
}Clone, #[automatically_derived]
impl<'ra> ::core::fmt::Debug for NameResolution<'ra> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field4_finish(f,
"NameResolution", "single_imports", &self.single_imports,
"non_glob_decl", &self.non_glob_decl, "glob_decl",
&self.glob_decl, "orig_ident_span", &&self.orig_ident_span)
}
}Debug)]
243pub(crate) struct NameResolution<'ra> {
244 pub single_imports: FxIndexSet<Import<'ra>>,
247 pub non_glob_decl: Option<Decl<'ra>> = None,
249 pub glob_decl: Option<Decl<'ra>> = None,
251 pub orig_ident_span: Span,
252}
253
254impl<'ra> NameResolution<'ra> {
255 pub(crate) fn new(orig_ident_span: Span) -> Self {
256 NameResolution { single_imports: FxIndexSet::default(), orig_ident_span, .. }
257 }
258
259 pub(crate) fn binding(&self) -> Option<Decl<'ra>> {
261 self.best_decl().and_then(|binding| {
262 if !binding.is_glob_import() || self.single_imports.is_empty() {
263 Some(binding)
264 } else {
265 None
266 }
267 })
268 }
269
270 pub(crate) fn best_decl(&self) -> Option<Decl<'ra>> {
271 self.non_glob_decl.or(self.glob_decl)
272 }
273}
274
275#[derive(#[automatically_derived]
impl ::core::fmt::Debug for UnresolvedImportError {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
let names: &'static _ =
&["span", "label", "note", "suggestion", "candidates", "segment",
"module"];
let values: &[&dyn ::core::fmt::Debug] =
&[&self.span, &self.label, &self.note, &self.suggestion,
&self.candidates, &self.segment, &&self.module];
::core::fmt::Formatter::debug_struct_fields_finish(f,
"UnresolvedImportError", names, values)
}
}Debug, #[automatically_derived]
impl ::core::clone::Clone for UnresolvedImportError {
#[inline]
fn clone(&self) -> UnresolvedImportError {
UnresolvedImportError {
span: ::core::clone::Clone::clone(&self.span),
label: ::core::clone::Clone::clone(&self.label),
note: ::core::clone::Clone::clone(&self.note),
suggestion: ::core::clone::Clone::clone(&self.suggestion),
candidates: ::core::clone::Clone::clone(&self.candidates),
segment: ::core::clone::Clone::clone(&self.segment),
module: ::core::clone::Clone::clone(&self.module),
}
}
}Clone)]
278struct UnresolvedImportError {
279 span: Span,
280 label: Option<String>,
281 note: Option<String>,
282 suggestion: Option<Suggestion>,
283 candidates: Option<Vec<ImportSuggestion>>,
284 segment: Option<Symbol>,
285 module: Option<DefId>,
287}
288
289fn pub_use_of_private_extern_crate_hack(import: Import<'_>, decl: Decl<'_>) -> Option<NodeId> {
292 match (&import.kind, &decl.kind) {
293 (ImportKind::Single { .. }, DeclKind::Import { import: decl_import, .. })
294 if let ImportKind::ExternCrate { id, .. } = decl_import.kind
295 && import.vis.is_public() =>
296 {
297 Some(id)
298 }
299 _ => None,
300 }
301}
302
303fn remove_same_import<'ra>(d1: Decl<'ra>, d2: Decl<'ra>) -> (Decl<'ra>, Decl<'ra>) {
305 if let DeclKind::Import { import: import1, source_decl: d1_next } = d1.kind
306 && let DeclKind::Import { import: import2, source_decl: d2_next } = d2.kind
307 && import1 == import2
308 {
309 match (&d1.expansion, &d2.expansion) {
(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);
}
}
};assert_eq!(d1.expansion, d2.expansion);
310 match (&d1.span, &d2.span) {
(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);
}
}
};assert_eq!(d1.span, d2.span);
311 if d1.ambiguity.get() != d2.ambiguity.get() {
312 if !d1.ambiguity.get().is_some() {
::core::panicking::panic("assertion failed: d1.ambiguity.get().is_some()")
};assert!(d1.ambiguity.get().is_some());
313 if !d2.ambiguity.get().is_none() {
::core::panicking::panic("assertion failed: d2.ambiguity.get().is_none()")
};assert!(d2.ambiguity.get().is_none());
314 }
315 remove_same_import(d1_next, d2_next)
319 } else {
320 (d1, d2)
321 }
322}
323
324impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
325 pub(crate) fn new_import_decl(&self, decl: Decl<'ra>, import: Import<'ra>) -> Decl<'ra> {
328 let import_vis = import.vis.to_def_id();
329 let vis = if decl.vis().is_at_least(import_vis, self.tcx)
330 || pub_use_of_private_extern_crate_hack(import, decl).is_some()
331 {
332 import_vis
333 } else {
334 decl.vis()
335 };
336
337 if let ImportKind::Glob { ref max_vis, .. } = import.kind
338 && (vis == import_vis
339 || max_vis.get().is_none_or(|max_vis| vis.is_at_least(max_vis, self.tcx)))
340 {
341 max_vis.set_unchecked(Some(vis.expect_local()))
342 }
343
344 self.arenas.alloc_decl(DeclData {
345 kind: DeclKind::Import { source_decl: decl, import },
346 ambiguity: CmCell::new(None),
347 warn_ambiguity: CmCell::new(false),
348 span: import.span,
349 vis: CmCell::new(vis),
350 expansion: import.parent_scope.expansion,
351 parent_module: Some(import.parent_scope.module),
352 })
353 }
354
355 fn select_glob_decl(
358 &self,
359 old_glob_decl: Decl<'ra>,
360 glob_decl: Decl<'ra>,
361 warn_ambiguity: bool,
362 ) -> Decl<'ra> {
363 if !glob_decl.is_glob_import() {
::core::panicking::panic("assertion failed: glob_decl.is_glob_import()")
};assert!(glob_decl.is_glob_import());
364 if !old_glob_decl.is_glob_import() {
::core::panicking::panic("assertion failed: old_glob_decl.is_glob_import()")
};assert!(old_glob_decl.is_glob_import());
365 match (&glob_decl, &old_glob_decl) {
(left_val, right_val) => {
if *left_val == *right_val {
let kind = ::core::panicking::AssertKind::Ne;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_ne!(glob_decl, old_glob_decl);
366 let (old_deep_decl, deep_decl) = remove_same_import(old_glob_decl, glob_decl);
383 if deep_decl != glob_decl {
384 match (&old_deep_decl, &old_glob_decl) {
(left_val, right_val) => {
if *left_val == *right_val {
let kind = ::core::panicking::AssertKind::Ne;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_ne!(old_deep_decl, old_glob_decl);
386 if old_glob_decl.ambiguity.get().is_some() && glob_decl.ambiguity.get().is_none() {
392 glob_decl.ambiguity.set_unchecked(old_glob_decl.ambiguity.get());
394 }
395 if glob_decl.is_ambiguity_recursive() {
396 glob_decl.warn_ambiguity.set_unchecked(true);
397 }
398 glob_decl
399 } else if glob_decl.res() != old_glob_decl.res() {
400 old_glob_decl.ambiguity.set_unchecked(Some(glob_decl));
401 old_glob_decl.warn_ambiguity.set_unchecked(warn_ambiguity);
402 if warn_ambiguity {
403 old_glob_decl
404 } else {
405 self.arenas.alloc_decl((*old_glob_decl).clone())
409 }
410 } else if !old_glob_decl.vis().is_at_least(glob_decl.vis(), self.tcx) {
411 glob_decl
415 } else if glob_decl.is_ambiguity_recursive() && !old_glob_decl.is_ambiguity_recursive() {
416 old_glob_decl.ambiguity.set_unchecked(Some(glob_decl));
418 old_glob_decl.warn_ambiguity.set_unchecked(true);
419 old_glob_decl
420 } else {
421 old_glob_decl
422 }
423 }
424
425 pub(crate) fn try_plant_decl_into_local_module(
428 &mut self,
429 ident: IdentKey,
430 orig_ident_span: Span,
431 ns: Namespace,
432 decl: Decl<'ra>,
433 warn_ambiguity: bool,
434 ) -> Result<(), Decl<'ra>> {
435 let module = decl.parent_module.unwrap();
436 let res = decl.res();
437 self.check_reserved_macro_name(ident.name, orig_ident_span, res);
438 let key = BindingKey::new_disambiguated(ident, ns, || {
442 module.underscore_disambiguator.update_unchecked(|d| d + 1);
443 module.underscore_disambiguator.get()
444 });
445 self.update_local_resolution(
446 module,
447 key,
448 orig_ident_span,
449 warn_ambiguity,
450 |this, resolution| {
451 if let Some(old_decl) = resolution.best_decl() {
452 match (&decl, &old_decl) {
(left_val, right_val) => {
if *left_val == *right_val {
let kind = ::core::panicking::AssertKind::Ne;
::core::panicking::assert_failed(kind, &*left_val, &*right_val,
::core::option::Option::None);
}
}
};assert_ne!(decl, old_decl);
453 if !!decl.warn_ambiguity.get() {
::core::panicking::panic("assertion failed: !decl.warn_ambiguity.get()")
};assert!(!decl.warn_ambiguity.get());
454 if res == Res::Err && old_decl.res() != Res::Err {
455 return Ok(());
457 }
458 match (old_decl.is_glob_import(), decl.is_glob_import()) {
459 (true, true) => {
460 resolution.glob_decl =
461 Some(this.select_glob_decl(old_decl, decl, warn_ambiguity));
462 }
463 (old_glob @ true, false) | (old_glob @ false, true) => {
464 let (glob_decl, non_glob_decl) =
465 if old_glob { (old_decl, decl) } else { (decl, old_decl) };
466 resolution.non_glob_decl = Some(non_glob_decl);
467 if let Some(old_glob_decl) = resolution.glob_decl
468 && old_glob_decl != glob_decl
469 {
470 resolution.glob_decl =
471 Some(this.select_glob_decl(old_glob_decl, glob_decl, false));
472 } else {
473 resolution.glob_decl = Some(glob_decl);
474 }
475 }
476 (false, false) => {
477 return Err(old_decl);
478 }
479 }
480 } else {
481 if decl.is_glob_import() {
482 resolution.glob_decl = Some(decl);
483 } else {
484 resolution.non_glob_decl = Some(decl);
485 }
486 }
487
488 Ok(())
489 },
490 )
491 }
492
493 fn update_local_resolution<T, F>(
496 &mut self,
497 module: Module<'ra>,
498 key: BindingKey,
499 orig_ident_span: Span,
500 warn_ambiguity: bool,
501 f: F,
502 ) -> T
503 where
504 F: FnOnce(&Resolver<'ra, 'tcx>, &mut NameResolution<'ra>) -> T,
505 {
506 let (binding, t, warn_ambiguity) = {
509 let resolution = &mut *self
510 .resolution_or_default(module, key, orig_ident_span)
511 .borrow_mut_unchecked();
512 let old_decl = resolution.binding();
513
514 let t = f(self, resolution);
515
516 if let Some(binding) = resolution.binding()
517 && old_decl != Some(binding)
518 {
519 (binding, t, warn_ambiguity || old_decl.is_some())
520 } else {
521 return t;
522 }
523 };
524
525 let Ok(glob_importers) = module.glob_importers.try_borrow_mut_unchecked() else {
526 return t;
527 };
528
529 for import in glob_importers.iter() {
531 let mut ident = key.ident;
532 let scope = match ident
533 .ctxt
534 .update_unchecked(|ctxt| ctxt.reverse_glob_adjust(module.expansion, import.span))
535 {
536 Some(Some(def)) => self.expn_def_scope(def),
537 Some(None) => import.parent_scope.module,
538 None => continue,
539 };
540 if self.is_accessible_from(binding.vis(), scope) {
541 let import_decl = self.new_import_decl(binding, *import);
542 let _ = self.try_plant_decl_into_local_module(
543 ident,
544 orig_ident_span,
545 key.ns,
546 import_decl,
547 warn_ambiguity,
548 );
549 }
550 }
551
552 t
553 }
554
555 fn import_dummy_binding(&mut self, import: Import<'ra>, is_indeterminate: bool) {
558 if let ImportKind::Single { target, ref decls, .. } = import.kind {
559 if !(is_indeterminate || decls.iter().all(|d| d.get().decl().is_none())) {
560 return; }
562 let dummy_decl = self.dummy_decl;
563 let dummy_decl = self.new_import_decl(dummy_decl, import);
564 self.per_ns(|this, ns| {
565 let module = import.parent_scope.module;
566 let ident = IdentKey::new(target);
567 let _ = this.try_plant_decl_into_local_module(
568 ident,
569 target.span,
570 ns,
571 dummy_decl,
572 false,
573 );
574 if target.name != kw::Underscore {
576 let key = BindingKey::new(ident, ns);
577 this.update_local_resolution(
578 module,
579 key,
580 target.span,
581 false,
582 |_, resolution| {
583 resolution.single_imports.swap_remove(&import);
584 },
585 )
586 }
587 });
588 self.record_use(target, dummy_decl, Used::Other);
589 } else if import.imported_module.get().is_none() {
590 self.import_use_map.insert(import, Used::Other);
591 if let Some(id) = import.id() {
592 self.used_imports.insert(id);
593 }
594 }
595 }
596
597 pub(crate) fn resolve_imports(&mut self) {
608 let mut prev_indeterminate_count = usize::MAX;
609 let mut indeterminate_count = self.indeterminate_imports.len() * 3;
610 while indeterminate_count < prev_indeterminate_count {
611 prev_indeterminate_count = indeterminate_count;
612 indeterminate_count = 0;
613 self.assert_speculative = true;
614 for import in mem::take(&mut self.indeterminate_imports) {
615 let import_indeterminate_count = self.cm().resolve_import(import);
616 indeterminate_count += import_indeterminate_count;
617 match import_indeterminate_count {
618 0 => self.determined_imports.push(import),
619 _ => self.indeterminate_imports.push(import),
620 }
621 }
622 self.assert_speculative = false;
623 }
624 }
625
626 pub(crate) fn finalize_imports(&mut self) {
627 let mut module_children = Default::default();
628 let mut ambig_module_children = Default::default();
629 for module in &self.local_modules {
630 self.finalize_resolutions_in(*module, &mut module_children, &mut ambig_module_children);
631 }
632 self.module_children = module_children;
633 self.ambig_module_children = ambig_module_children;
634
635 let mut seen_spans = FxHashSet::default();
636 let mut errors = ::alloc::vec::Vec::new()vec![];
637 let mut prev_root_id: NodeId = NodeId::ZERO;
638 let determined_imports = mem::take(&mut self.determined_imports);
639 let indeterminate_imports = mem::take(&mut self.indeterminate_imports);
640
641 let mut glob_error = false;
642 for (is_indeterminate, import) in determined_imports
643 .iter()
644 .map(|i| (false, i))
645 .chain(indeterminate_imports.iter().map(|i| (true, i)))
646 {
647 let unresolved_import_error = self.finalize_import(*import);
648 self.import_dummy_binding(*import, is_indeterminate);
651
652 let Some(err) = unresolved_import_error else { continue };
653
654 glob_error |= import.is_glob();
655
656 if let ImportKind::Single { source, ref decls, .. } = import.kind
657 && source.name == kw::SelfLower
658 && let PendingDecl::Ready(None) = decls.value_ns.get()
660 {
661 continue;
662 }
663
664 if prev_root_id != NodeId::ZERO && prev_root_id != import.root_id && !errors.is_empty()
665 {
666 self.throw_unresolved_import_error(errors, glob_error);
669 errors = ::alloc::vec::Vec::new()vec![];
670 }
671 if seen_spans.insert(err.span) {
672 errors.push((*import, err));
673 prev_root_id = import.root_id;
674 }
675 }
676
677 if !errors.is_empty() {
678 self.throw_unresolved_import_error(errors, glob_error);
679 return;
680 }
681
682 for import in &indeterminate_imports {
683 let path = import_path_to_string(
684 &import.module_path.iter().map(|seg| seg.ident).collect::<Vec<_>>(),
685 &import.kind,
686 import.span,
687 );
688 if path.contains("::") {
691 let err = UnresolvedImportError {
692 span: import.span,
693 label: None,
694 note: None,
695 suggestion: None,
696 candidates: None,
697 segment: None,
698 module: None,
699 };
700 errors.push((*import, err))
701 }
702 }
703
704 if !errors.is_empty() {
705 self.throw_unresolved_import_error(errors, glob_error);
706 }
707 }
708
709 pub(crate) fn lint_reexports(&mut self, exported_ambiguities: FxHashSet<Decl<'ra>>) {
710 for module in &self.local_modules {
711 for (key, resolution) in self.resolutions(*module).borrow().iter() {
712 let resolution = resolution.borrow();
713 let Some(binding) = resolution.best_decl() else { continue };
714
715 if let DeclKind::Import { import, .. } = binding.kind
716 && let Some(amb_binding) = binding.ambiguity.get()
717 && binding.res() != Res::Err
718 && exported_ambiguities.contains(&binding)
719 {
720 self.lint_buffer.buffer_lint(
721 AMBIGUOUS_GLOB_REEXPORTS,
722 import.root_id,
723 import.root_span,
724 BuiltinLintDiag::AmbiguousGlobReexports {
725 name: key.ident.name.to_string(),
726 namespace: key.ns.descr().to_string(),
727 first_reexport_span: import.root_span,
728 duplicate_reexport_span: amb_binding.span,
729 },
730 );
731 }
732
733 if let Some(glob_decl) = resolution.glob_decl
734 && resolution.non_glob_decl.is_some()
735 {
736 if binding.res() != Res::Err
737 && glob_decl.res() != Res::Err
738 && let DeclKind::Import { import: glob_import, .. } = glob_decl.kind
739 && let Some(glob_import_id) = glob_import.id()
740 && let glob_import_def_id = self.local_def_id(glob_import_id)
741 && self.effective_visibilities.is_exported(glob_import_def_id)
742 && glob_decl.vis().is_public()
743 && !binding.vis().is_public()
744 {
745 let binding_id = match binding.kind {
746 DeclKind::Def(res) => {
747 Some(self.def_id_to_node_id(res.def_id().expect_local()))
748 }
749 DeclKind::Import { import, .. } => import.id(),
750 };
751 if let Some(binding_id) = binding_id {
752 self.lint_buffer.buffer_lint(
753 HIDDEN_GLOB_REEXPORTS,
754 binding_id,
755 binding.span,
756 BuiltinLintDiag::HiddenGlobReexports {
757 name: key.ident.name.to_string(),
758 namespace: key.ns.descr().to_owned(),
759 glob_reexport_span: glob_decl.span,
760 private_item_span: binding.span,
761 },
762 );
763 }
764 }
765 }
766
767 if let DeclKind::Import { import, .. } = binding.kind
768 && let Some(binding_id) = import.id()
769 && let import_def_id = self.local_def_id(binding_id)
770 && self.effective_visibilities.is_exported(import_def_id)
771 && let Res::Def(reexported_kind, reexported_def_id) = binding.res()
772 && !#[allow(non_exhaustive_omitted_patterns)] match reexported_kind {
DefKind::Ctor(..) => true,
_ => false,
}matches!(reexported_kind, DefKind::Ctor(..))
773 && !reexported_def_id.is_local()
774 && self.tcx.is_private_dep(reexported_def_id.krate)
775 {
776 self.lint_buffer.buffer_lint(
777 EXPORTED_PRIVATE_DEPENDENCIES,
778 binding_id,
779 binding.span,
780 crate::errors::ReexportPrivateDependency {
781 name: key.ident.name,
782 kind: binding.res().descr(),
783 krate: self.tcx.crate_name(reexported_def_id.krate),
784 },
785 );
786 }
787 }
788 }
789 }
790
791 fn throw_unresolved_import_error(
792 &mut self,
793 mut errors: Vec<(Import<'_>, UnresolvedImportError)>,
794 glob_error: bool,
795 ) {
796 errors.retain(|(_import, err)| match err.module {
797 Some(def_id) if self.mods_with_parse_errors.contains(&def_id) => false,
799 _ => err.segment != Some(kw::Underscore),
802 });
803 if errors.is_empty() {
804 self.tcx.dcx().delayed_bug("expected a parse or \"`_` can't be an identifier\" error");
805 return;
806 }
807
808 let span = MultiSpan::from_spans(errors.iter().map(|(_, err)| err.span).collect());
809
810 let paths = errors
811 .iter()
812 .map(|(import, err)| {
813 let path = import_path_to_string(
814 &import.module_path.iter().map(|seg| seg.ident).collect::<Vec<_>>(),
815 &import.kind,
816 err.span,
817 );
818 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("`{0}`", path))
})format!("`{path}`")
819 })
820 .collect::<Vec<_>>();
821 let msg = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("unresolved import{0} {1}",
if paths.len() == 1 { "" } else { "s" }, paths.join(", ")))
})format!("unresolved import{} {}", pluralize!(paths.len()), paths.join(", "),);
822
823 let mut diag = {
self.dcx().struct_span_err(span,
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", msg))
})).with_code(E0432)
}struct_span_code_err!(self.dcx(), span, E0432, "{msg}");
824
825 if let Some((_, UnresolvedImportError { note: Some(note), .. })) = errors.iter().last() {
826 diag.note(note.clone());
827 }
828
829 const MAX_LABEL_COUNT: usize = 10;
831
832 for (import, err) in errors.into_iter().take(MAX_LABEL_COUNT) {
833 if let Some(label) = err.label {
834 diag.span_label(err.span, label);
835 }
836
837 if let Some((suggestions, msg, applicability)) = err.suggestion {
838 if suggestions.is_empty() {
839 diag.help(msg);
840 continue;
841 }
842 diag.multipart_suggestion(msg, suggestions, applicability);
843 }
844
845 if let Some(candidates) = &err.candidates {
846 match &import.kind {
847 ImportKind::Single { nested: false, source, target, .. } => import_candidates(
848 self.tcx,
849 &mut diag,
850 Some(err.span),
851 candidates,
852 DiagMode::Import { append: false, unresolved_import: true },
853 (source != target)
854 .then(|| ::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" as {0}", target))
})format!(" as {target}"))
855 .as_deref()
856 .unwrap_or(""),
857 ),
858 ImportKind::Single { nested: true, source, target, .. } => {
859 import_candidates(
860 self.tcx,
861 &mut diag,
862 None,
863 candidates,
864 DiagMode::Normal,
865 (source != target)
866 .then(|| ::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" as {0}", target))
})format!(" as {target}"))
867 .as_deref()
868 .unwrap_or(""),
869 );
870 }
871 _ => {}
872 }
873 }
874
875 if #[allow(non_exhaustive_omitted_patterns)] match import.kind {
ImportKind::Single { .. } => true,
_ => false,
}matches!(import.kind, ImportKind::Single { .. })
876 && let Some(segment) = err.segment
877 && let Some(module) = err.module
878 {
879 self.find_cfg_stripped(&mut diag, &segment, module)
880 }
881 }
882
883 let guar = diag.emit();
884 if glob_error {
885 self.glob_error = Some(guar);
886 }
887 }
888
889 fn resolve_import<'r>(mut self: CmResolver<'r, 'ra, 'tcx>, import: Import<'ra>) -> usize {
896 {
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/imports.rs:896",
"rustc_resolve::imports", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/imports.rs"),
::tracing_core::__macro_support::Option::Some(896u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve::imports"),
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("(resolving import for module) resolving import `{0}::...` in `{1}`",
Segment::names_to_string(&import.module_path),
module_to_string(import.parent_scope.module).unwrap_or_else(||
"???".to_string())) as &dyn Value))])
});
} else { ; }
};debug!(
897 "(resolving import for module) resolving import `{}::...` in `{}`",
898 Segment::names_to_string(&import.module_path),
899 module_to_string(import.parent_scope.module).unwrap_or_else(|| "???".to_string()),
900 );
901 let module = if let Some(module) = import.imported_module.get() {
902 module
903 } else {
904 let path_res = self.reborrow().maybe_resolve_path(
905 &import.module_path,
906 None,
907 &import.parent_scope,
908 Some(import),
909 );
910
911 match path_res {
912 PathResult::Module(module) => module,
913 PathResult::Indeterminate => return 3,
914 PathResult::NonModule(..) | PathResult::Failed { .. } => return 0,
915 }
916 };
917
918 import.imported_module.set_unchecked(Some(module));
919 let (source, target, bindings, type_ns_only) = match import.kind {
920 ImportKind::Single { source, target, ref decls, type_ns_only, .. } => {
921 (source, target, decls, type_ns_only)
922 }
923 ImportKind::Glob { .. } => {
924 self.get_mut_unchecked().resolve_glob_import(import);
925 return 0;
926 }
927 _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
928 };
929
930 let mut indeterminate_count = 0;
931 self.per_ns_cm(|mut this, ns| {
932 if !type_ns_only || ns == TypeNS {
933 if bindings[ns].get() != PendingDecl::Pending {
934 return;
935 };
936 let binding_result = this.reborrow().maybe_resolve_ident_in_module(
937 module,
938 source,
939 ns,
940 &import.parent_scope,
941 Some(import),
942 );
943 let parent = import.parent_scope.module;
944 let binding = match binding_result {
945 Ok(binding) => {
946 if binding.is_assoc_item()
947 && !this.tcx.features().import_trait_associated_functions()
948 {
949 feature_err(
950 this.tcx.sess,
951 sym::import_trait_associated_functions,
952 import.span,
953 "`use` associated items of traits is unstable",
954 )
955 .emit();
956 }
957 let import_decl = this.new_import_decl(binding, import);
959 this.get_mut_unchecked().plant_decl_into_local_module(
960 IdentKey::new(target),
961 target.span,
962 ns,
963 import_decl,
964 );
965 PendingDecl::Ready(Some(import_decl))
966 }
967 Err(Determinacy::Determined) => {
968 if target.name != kw::Underscore {
970 let key = BindingKey::new(IdentKey::new(target), ns);
971 this.get_mut_unchecked().update_local_resolution(
972 parent,
973 key,
974 target.span,
975 false,
976 |_, resolution| {
977 resolution.single_imports.swap_remove(&import);
978 },
979 );
980 }
981 PendingDecl::Ready(None)
982 }
983 Err(Determinacy::Undetermined) => {
984 indeterminate_count += 1;
985 PendingDecl::Pending
986 }
987 };
988 bindings[ns].set_unchecked(binding);
989 }
990 });
991
992 indeterminate_count
993 }
994
995 fn finalize_import(&mut self, import: Import<'ra>) -> Option<UnresolvedImportError> {
1000 let ignore_decl = match &import.kind {
1001 ImportKind::Single { decls, .. } => decls[TypeNS].get().decl(),
1002 _ => None,
1003 };
1004 let ambiguity_errors_len = |errors: &Vec<AmbiguityError<'_>>| {
1005 errors.iter().filter(|error| error.warning.is_none()).count()
1006 };
1007 let prev_ambiguity_errors_len = ambiguity_errors_len(&self.ambiguity_errors);
1008 let finalize = Finalize::with_root_span(import.root_id, import.span, import.root_span);
1009
1010 let privacy_errors_len = self.privacy_errors.len();
1012
1013 let path_res = self.cm().resolve_path(
1014 &import.module_path,
1015 None,
1016 &import.parent_scope,
1017 Some(finalize),
1018 ignore_decl,
1019 Some(import),
1020 );
1021
1022 let no_ambiguity =
1023 ambiguity_errors_len(&self.ambiguity_errors) == prev_ambiguity_errors_len;
1024
1025 let module = match path_res {
1026 PathResult::Module(module) => {
1027 if let Some(initial_module) = import.imported_module.get() {
1029 if module != initial_module && no_ambiguity && !self.issue_145575_hack_applied {
1030 ::rustc_middle::util::bug::span_bug_fmt(import.span,
format_args!("inconsistent resolution for an import"));span_bug!(import.span, "inconsistent resolution for an import");
1031 }
1032 } else if self.privacy_errors.is_empty() {
1033 self.dcx()
1034 .create_err(CannotDetermineImportResolution { span: import.span })
1035 .emit();
1036 }
1037
1038 module
1039 }
1040 PathResult::Failed {
1041 is_error_from_last_segment: false,
1042 span,
1043 segment_name,
1044 label,
1045 suggestion,
1046 module,
1047 error_implied_by_parse_error: _,
1048 message,
1049 } => {
1050 if no_ambiguity {
1051 if !self.issue_145575_hack_applied {
1052 if !import.imported_module.get().is_none() {
::core::panicking::panic("assertion failed: import.imported_module.get().is_none()")
};assert!(import.imported_module.get().is_none());
1053 }
1054 self.report_error(
1055 span,
1056 ResolutionError::FailedToResolve {
1057 segment: segment_name,
1058 label,
1059 suggestion,
1060 module,
1061 message,
1062 },
1063 );
1064 }
1065 return None;
1066 }
1067 PathResult::Failed {
1068 is_error_from_last_segment: true,
1069 span,
1070 label,
1071 suggestion,
1072 module,
1073 segment_name,
1074 ..
1075 } => {
1076 if no_ambiguity {
1077 if !self.issue_145575_hack_applied {
1078 if !import.imported_module.get().is_none() {
::core::panicking::panic("assertion failed: import.imported_module.get().is_none()")
};assert!(import.imported_module.get().is_none());
1079 }
1080 let module = if let Some(ModuleOrUniformRoot::Module(m)) = module {
1081 m.opt_def_id()
1082 } else {
1083 None
1084 };
1085 let err = match self
1086 .make_path_suggestion(import.module_path.clone(), &import.parent_scope)
1087 {
1088 Some((suggestion, note)) => UnresolvedImportError {
1089 span,
1090 label: None,
1091 note,
1092 suggestion: Some((
1093 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[(span, Segment::names_to_string(&suggestion))]))vec![(span, Segment::names_to_string(&suggestion))],
1094 String::from("a similar path exists"),
1095 Applicability::MaybeIncorrect,
1096 )),
1097 candidates: None,
1098 segment: Some(segment_name),
1099 module,
1100 },
1101 None => UnresolvedImportError {
1102 span,
1103 label: Some(label),
1104 note: None,
1105 suggestion,
1106 candidates: None,
1107 segment: Some(segment_name),
1108 module,
1109 },
1110 };
1111 return Some(err);
1112 }
1113 return None;
1114 }
1115 PathResult::NonModule(partial_res) => {
1116 if no_ambiguity && partial_res.full_res() != Some(Res::Err) {
1117 if !import.imported_module.get().is_none() {
::core::panicking::panic("assertion failed: import.imported_module.get().is_none()")
};assert!(import.imported_module.get().is_none());
1119 }
1120 return None;
1122 }
1123 PathResult::Indeterminate => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1124 };
1125
1126 let (ident, target, bindings, type_ns_only, import_id) = match import.kind {
1127 ImportKind::Single { source, target, ref decls, type_ns_only, id, .. } => {
1128 (source, target, decls, type_ns_only, id)
1129 }
1130 ImportKind::Glob { ref max_vis, id } => {
1131 if import.module_path.len() <= 1 {
1132 let mut full_path = import.module_path.clone();
1135 full_path.push(Segment::from_ident(Ident::dummy()));
1136 self.lint_if_path_starts_with_module(finalize, &full_path, None);
1137 }
1138
1139 if let ModuleOrUniformRoot::Module(module) = module
1140 && module == import.parent_scope.module
1141 {
1142 return Some(UnresolvedImportError {
1144 span: import.span,
1145 label: Some(String::from("cannot glob-import a module into itself")),
1146 note: None,
1147 suggestion: None,
1148 candidates: None,
1149 segment: None,
1150 module: None,
1151 });
1152 }
1153 if let Some(max_vis) = max_vis.get()
1154 && !max_vis.is_at_least(import.vis, self.tcx)
1155 {
1156 let def_id = self.local_def_id(id);
1157 self.lint_buffer.buffer_lint(
1158 UNUSED_IMPORTS,
1159 id,
1160 import.span,
1161 crate::errors::RedundantImportVisibility {
1162 span: import.span,
1163 help: (),
1164 max_vis: max_vis.to_string(def_id, self.tcx),
1165 import_vis: import.vis.to_string(def_id, self.tcx),
1166 },
1167 );
1168 }
1169 return None;
1170 }
1171 _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1172 };
1173
1174 if self.privacy_errors.len() != privacy_errors_len {
1175 let mut path = import.module_path.clone();
1178 path.push(Segment::from_ident(ident));
1179 if let PathResult::Module(ModuleOrUniformRoot::Module(module)) = self.cm().resolve_path(
1180 &path,
1181 None,
1182 &import.parent_scope,
1183 Some(finalize),
1184 ignore_decl,
1185 None,
1186 ) {
1187 let res = module.res().map(|r| (r, ident));
1188 for error in &mut self.privacy_errors[privacy_errors_len..] {
1189 error.outermost_res = res;
1190 }
1191 }
1192 }
1193
1194 let mut all_ns_err = true;
1195 self.per_ns(|this, ns| {
1196 if !type_ns_only || ns == TypeNS {
1197 let binding = this.cm().resolve_ident_in_module(
1198 module,
1199 ident,
1200 ns,
1201 &import.parent_scope,
1202 Some(Finalize {
1203 report_private: false,
1204 import_vis: Some(import.vis),
1205 ..finalize
1206 }),
1207 bindings[ns].get().decl(),
1208 Some(import),
1209 );
1210
1211 match binding {
1212 Ok(binding) => {
1213 let initial_res = bindings[ns].get().decl().map(|binding| {
1215 let initial_binding = binding.import_source();
1216 all_ns_err = false;
1217 if target.name == kw::Underscore
1218 && initial_binding.is_extern_crate()
1219 && !initial_binding.is_import()
1220 {
1221 let used = if import.module_path.is_empty() {
1222 Used::Scope
1223 } else {
1224 Used::Other
1225 };
1226 this.record_use(ident, binding, used);
1227 }
1228 initial_binding.res()
1229 });
1230 let res = binding.res();
1231 let has_ambiguity_error =
1232 this.ambiguity_errors.iter().any(|error| error.warning.is_none());
1233 if res == Res::Err || has_ambiguity_error {
1234 this.dcx()
1235 .span_delayed_bug(import.span, "some error happened for an import");
1236 return;
1237 }
1238 if let Some(initial_res) = initial_res {
1239 if res != initial_res && !this.issue_145575_hack_applied {
1240 ::rustc_middle::util::bug::span_bug_fmt(import.span,
format_args!("inconsistent resolution for an import"));span_bug!(import.span, "inconsistent resolution for an import");
1241 }
1242 } else if this.privacy_errors.is_empty() {
1243 this.dcx()
1244 .create_err(CannotDetermineImportResolution { span: import.span })
1245 .emit();
1246 }
1247 }
1248 Err(..) => {
1249 }
1256 }
1257 }
1258 });
1259
1260 if all_ns_err {
1261 let mut all_ns_failed = true;
1262 self.per_ns(|this, ns| {
1263 if !type_ns_only || ns == TypeNS {
1264 let binding = this.cm().resolve_ident_in_module(
1265 module,
1266 ident,
1267 ns,
1268 &import.parent_scope,
1269 Some(finalize),
1270 None,
1271 None,
1272 );
1273 if binding.is_ok() {
1274 all_ns_failed = false;
1275 }
1276 }
1277 });
1278
1279 return if all_ns_failed {
1280 let names = match module {
1281 ModuleOrUniformRoot::Module(module) => {
1282 self.resolutions(module)
1283 .borrow()
1284 .iter()
1285 .filter_map(|(BindingKey { ident: i, .. }, resolution)| {
1286 if i.name == ident.name {
1287 return None;
1288 } if i.name == kw::Underscore {
1290 return None;
1291 } let resolution = resolution.borrow();
1294 if let Some(name_binding) = resolution.best_decl() {
1295 match name_binding.kind {
1296 DeclKind::Import { source_decl, .. } => {
1297 match source_decl.kind {
1298 DeclKind::Def(Res::Err) => None,
1301 _ => Some(i.name),
1302 }
1303 }
1304 _ => Some(i.name),
1305 }
1306 } else if resolution.single_imports.is_empty() {
1307 None
1308 } else {
1309 Some(i.name)
1310 }
1311 })
1312 .collect()
1313 }
1314 _ => Vec::new(),
1315 };
1316
1317 let lev_suggestion =
1318 find_best_match_for_name(&names, ident.name, None).map(|suggestion| {
1319 (
1320 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[(ident.span, suggestion.to_string())]))vec![(ident.span, suggestion.to_string())],
1321 String::from("a similar name exists in the module"),
1322 Applicability::MaybeIncorrect,
1323 )
1324 });
1325
1326 let (suggestion, note) =
1327 match self.check_for_module_export_macro(import, module, ident) {
1328 Some((suggestion, note)) => (suggestion.or(lev_suggestion), note),
1329 _ => (lev_suggestion, None),
1330 };
1331
1332 let label = match module {
1333 ModuleOrUniformRoot::Module(module) => {
1334 let module_str = module_to_string(module);
1335 if let Some(module_str) = module_str {
1336 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("no `{0}` in `{1}`", ident,
module_str))
})format!("no `{ident}` in `{module_str}`")
1337 } else {
1338 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("no `{0}` in the root", ident))
})format!("no `{ident}` in the root")
1339 }
1340 }
1341 _ => {
1342 if !ident.is_path_segment_keyword() {
1343 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("no external crate `{0}`", ident))
})format!("no external crate `{ident}`")
1344 } else {
1345 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("no `{0}` in the root", ident))
})format!("no `{ident}` in the root")
1348 }
1349 }
1350 };
1351
1352 let parent_suggestion =
1353 self.lookup_import_candidates(ident, TypeNS, &import.parent_scope, |_| true);
1354
1355 Some(UnresolvedImportError {
1356 span: import.span,
1357 label: Some(label),
1358 note,
1359 suggestion,
1360 candidates: if !parent_suggestion.is_empty() {
1361 Some(parent_suggestion)
1362 } else {
1363 None
1364 },
1365 module: import.imported_module.get().and_then(|module| {
1366 if let ModuleOrUniformRoot::Module(m) = module {
1367 m.opt_def_id()
1368 } else {
1369 None
1370 }
1371 }),
1372 segment: Some(ident.name),
1373 })
1374 } else {
1375 None
1377 };
1378 }
1379
1380 let mut reexport_error = None;
1381 let mut any_successful_reexport = false;
1382 let mut crate_private_reexport = false;
1383 self.per_ns(|this, ns| {
1384 let Some(binding) = bindings[ns].get().decl().map(|b| b.import_source()) else {
1385 return;
1386 };
1387
1388 if !binding.vis().is_at_least(import.vis, this.tcx) {
1389 reexport_error = Some((ns, binding));
1390 if let Visibility::Restricted(binding_def_id) = binding.vis()
1391 && binding_def_id.is_top_level_module()
1392 {
1393 crate_private_reexport = true;
1394 }
1395 } else {
1396 any_successful_reexport = true;
1397 }
1398 });
1399
1400 if !any_successful_reexport {
1402 let (ns, binding) = reexport_error.unwrap();
1403 if let Some(extern_crate_id) = pub_use_of_private_extern_crate_hack(import, binding) {
1404 let extern_crate_sp = self.tcx.source_span(self.local_def_id(extern_crate_id));
1405 self.lint_buffer.buffer_lint(
1406 PUB_USE_OF_PRIVATE_EXTERN_CRATE,
1407 import_id,
1408 import.span,
1409 crate::errors::PrivateExternCrateReexport {
1410 ident,
1411 sugg: extern_crate_sp.shrink_to_lo(),
1412 },
1413 );
1414 } else if ns == TypeNS {
1415 let err = if crate_private_reexport {
1416 self.dcx()
1417 .create_err(CannotBeReexportedCratePublicNS { span: import.span, ident })
1418 } else {
1419 self.dcx().create_err(CannotBeReexportedPrivateNS { span: import.span, ident })
1420 };
1421 err.emit();
1422 } else {
1423 let mut err = if crate_private_reexport {
1424 self.dcx()
1425 .create_err(CannotBeReexportedCratePublic { span: import.span, ident })
1426 } else {
1427 self.dcx().create_err(CannotBeReexportedPrivate { span: import.span, ident })
1428 };
1429
1430 match binding.kind {
1431 DeclKind::Def(Res::Def(DefKind::Macro(_), def_id))
1432 if self.get_macro_by_def_id(def_id).macro_rules =>
1434 {
1435 err.subdiagnostic( ConsiderAddingMacroExport {
1436 span: binding.span,
1437 });
1438 err.subdiagnostic( ConsiderMarkingAsPubCrate {
1439 vis_span: import.vis_span,
1440 });
1441 }
1442 _ => {
1443 err.subdiagnostic( ConsiderMarkingAsPub {
1444 span: import.span,
1445 ident,
1446 });
1447 }
1448 }
1449 err.emit();
1450 }
1451 }
1452
1453 if import.module_path.len() <= 1 {
1454 let mut full_path = import.module_path.clone();
1457 full_path.push(Segment::from_ident(ident));
1458 self.per_ns(|this, ns| {
1459 if let Some(binding) = bindings[ns].get().decl().map(|b| b.import_source()) {
1460 this.lint_if_path_starts_with_module(finalize, &full_path, Some(binding));
1461 }
1462 });
1463 }
1464
1465 self.per_ns(|this, ns| {
1469 if let Some(binding) = bindings[ns].get().decl().map(|b| b.import_source()) {
1470 this.import_res_map.entry(import_id).or_default()[ns] = Some(binding.res());
1471 }
1472 });
1473
1474 {
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/imports.rs:1474",
"rustc_resolve::imports", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/imports.rs"),
::tracing_core::__macro_support::Option::Some(1474u32),
::tracing_core::__macro_support::Option::Some("rustc_resolve::imports"),
::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};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("(resolving single import) successfully resolved import")
as &dyn Value))])
});
} else { ; }
};debug!("(resolving single import) successfully resolved import");
1475 None
1476 }
1477
1478 pub(crate) fn check_for_redundant_imports(&mut self, import: Import<'ra>) -> bool {
1479 let ImportKind::Single { source, target, ref decls, id, .. } = import.kind else {
1481 ::core::panicking::panic("internal error: entered unreachable code")unreachable!()
1482 };
1483
1484 if source != target {
1486 return false;
1487 }
1488
1489 if import.parent_scope.expansion != LocalExpnId::ROOT {
1491 return false;
1492 }
1493
1494 if self.import_use_map.get(&import) == Some(&Used::Other)
1499 || self.effective_visibilities.is_exported(self.local_def_id(id))
1500 {
1501 return false;
1502 }
1503
1504 let mut is_redundant = true;
1505 let mut redundant_span = PerNS { value_ns: None, type_ns: None, macro_ns: None };
1506 self.per_ns(|this, ns| {
1507 let binding = decls[ns].get().decl().map(|b| b.import_source());
1508 if is_redundant && let Some(binding) = binding {
1509 if binding.res() == Res::Err {
1510 return;
1511 }
1512
1513 match this.cm().resolve_ident_in_scope_set(
1514 target,
1515 ScopeSet::All(ns),
1516 &import.parent_scope,
1517 None,
1518 decls[ns].get().decl(),
1519 None,
1520 ) {
1521 Ok(other_binding) => {
1522 is_redundant = binding.res() == other_binding.res()
1523 && !other_binding.is_ambiguity_recursive();
1524 if is_redundant {
1525 redundant_span[ns] =
1526 Some((other_binding.span, other_binding.is_import()));
1527 }
1528 }
1529 Err(_) => is_redundant = false,
1530 }
1531 }
1532 });
1533
1534 if is_redundant && !redundant_span.is_empty() {
1535 let mut redundant_spans: Vec<_> = redundant_span.present_items().collect();
1536 redundant_spans.sort();
1537 redundant_spans.dedup();
1538 self.lint_buffer.buffer_lint(
1539 REDUNDANT_IMPORTS,
1540 id,
1541 import.span,
1542 BuiltinLintDiag::RedundantImport(redundant_spans, source),
1543 );
1544 return true;
1545 }
1546
1547 false
1548 }
1549
1550 fn resolve_glob_import(&mut self, import: Import<'ra>) {
1551 let ImportKind::Glob { id, .. } = import.kind else { ::core::panicking::panic("internal error: entered unreachable code")unreachable!() };
1553
1554 let ModuleOrUniformRoot::Module(module) = import.imported_module.get().unwrap() else {
1555 self.dcx().emit_err(CannotGlobImportAllCrates { span: import.span });
1556 return;
1557 };
1558
1559 if module.is_trait() && !self.tcx.features().import_trait_associated_functions() {
1560 feature_err(
1561 self.tcx.sess,
1562 sym::import_trait_associated_functions,
1563 import.span,
1564 "`use` associated items of traits is unstable",
1565 )
1566 .emit();
1567 }
1568
1569 if module == import.parent_scope.module {
1570 return;
1571 }
1572
1573 module.glob_importers.borrow_mut_unchecked().push(import);
1575
1576 let bindings = self
1579 .resolutions(module)
1580 .borrow()
1581 .iter()
1582 .filter_map(|(key, resolution)| {
1583 let resolution = resolution.borrow();
1584 resolution.binding().map(|binding| (*key, binding, resolution.orig_ident_span))
1585 })
1586 .collect::<Vec<_>>();
1587 for (mut key, binding, orig_ident_span) in bindings {
1588 let scope =
1589 match key.ident.ctxt.update_unchecked(|ctxt| {
1590 ctxt.reverse_glob_adjust(module.expansion, import.span)
1591 }) {
1592 Some(Some(def)) => self.expn_def_scope(def),
1593 Some(None) => import.parent_scope.module,
1594 None => continue,
1595 };
1596 if self.is_accessible_from(binding.vis(), scope) {
1597 let import_decl = self.new_import_decl(binding, import);
1598 let warn_ambiguity = self
1599 .resolution(import.parent_scope.module, key)
1600 .and_then(|r| r.binding())
1601 .is_some_and(|binding| binding.warn_ambiguity_recursive());
1602 let _ = self.try_plant_decl_into_local_module(
1603 key.ident,
1604 orig_ident_span,
1605 key.ns,
1606 import_decl,
1607 warn_ambiguity,
1608 );
1609 }
1610 }
1611
1612 self.record_partial_res(id, PartialRes::new(module.res().unwrap()));
1614 }
1615
1616 fn finalize_resolutions_in(
1619 &self,
1620 module: Module<'ra>,
1621 module_children: &mut LocalDefIdMap<Vec<ModChild>>,
1622 ambig_module_children: &mut LocalDefIdMap<Vec<AmbigModChild>>,
1623 ) {
1624 *module.globs.borrow_mut(self) = Vec::new();
1626
1627 let Some(def_id) = module.opt_def_id() else { return };
1628
1629 let mut children = Vec::new();
1630 let mut ambig_children = Vec::new();
1631
1632 module.for_each_child(self, |this, ident, orig_ident_span, _, binding| {
1633 let res = binding.res().expect_non_local();
1634 if res != def::Res::Err {
1635 let ident = ident.orig(orig_ident_span);
1636 let child =
1637 |reexport_chain| ModChild { ident, res, vis: binding.vis(), reexport_chain };
1638 if let Some((ambig_binding1, ambig_binding2)) = binding.descent_to_ambiguity() {
1639 let main = child(ambig_binding1.reexport_chain(this));
1640 let second = ModChild {
1641 ident,
1642 res: ambig_binding2.res().expect_non_local(),
1643 vis: ambig_binding2.vis(),
1644 reexport_chain: ambig_binding2.reexport_chain(this),
1645 };
1646 ambig_children.push(AmbigModChild { main, second })
1647 } else {
1648 children.push(child(binding.reexport_chain(this)));
1649 }
1650 }
1651 });
1652
1653 if !children.is_empty() {
1654 module_children.insert(def_id.expect_local(), children);
1655 }
1656 if !ambig_children.is_empty() {
1657 ambig_module_children.insert(def_id.expect_local(), ambig_children);
1658 }
1659 }
1660}
1661
1662fn import_path_to_string(names: &[Ident], import_kind: &ImportKind<'_>, span: Span) -> String {
1663 let pos = names.iter().position(|p| span == p.span && p.name != kw::PathRoot);
1664 let global = !names.is_empty() && names[0].name == kw::PathRoot;
1665 if let Some(pos) = pos {
1666 let names = if global { &names[1..pos + 1] } else { &names[..pos + 1] };
1667 names_to_string(names.iter().map(|ident| ident.name))
1668 } else {
1669 let names = if global { &names[1..] } else { names };
1670 if names.is_empty() {
1671 import_kind_to_string(import_kind)
1672 } else {
1673 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}::{1}",
names_to_string(names.iter().map(|ident| ident.name)),
import_kind_to_string(import_kind)))
})format!(
1674 "{}::{}",
1675 names_to_string(names.iter().map(|ident| ident.name)),
1676 import_kind_to_string(import_kind),
1677 )
1678 }
1679 }
1680}
1681
1682fn import_kind_to_string(import_kind: &ImportKind<'_>) -> String {
1683 match import_kind {
1684 ImportKind::Single { source, .. } => source.to_string(),
1685 ImportKind::Glob { .. } => "*".to_string(),
1686 ImportKind::ExternCrate { .. } => "<extern crate>".to_string(),
1687 ImportKind::MacroUse { .. } => "#[macro_use]".to_string(),
1688 ImportKind::MacroExport => "#[macro_export]".to_string(),
1689 }
1690}