]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/resolve_imports.rs
Auto merge of #59826 - llogiq:multi-dbg, r=SimonSapin
[rust.git] / src / librustc_resolve / resolve_imports.rs
1 use ImportDirectiveSubclass::*;
2
3 use crate::{AmbiguityError, AmbiguityKind, AmbiguityErrorMisc};
4 use crate::{CrateLint, Module, ModuleOrUniformRoot, PerNS, ScopeSet, Weak};
5 use crate::Namespace::{self, TypeNS, MacroNS};
6 use crate::{NameBinding, NameBindingKind, ToNameBinding, PathResult, PrivacyError};
7 use crate::{Resolver, Segment};
8 use crate::{names_to_string, module_to_string};
9 use crate::{resolve_error, ResolutionError, Suggestion};
10 use crate::ModuleKind;
11 use crate::macros::ParentScope;
12
13 use errors::Applicability;
14
15 use rustc_data_structures::ptr_key::PtrKey;
16 use rustc::ty;
17 use rustc::lint::builtin::BuiltinLintDiagnostics;
18 use rustc::lint::builtin::{
19     DUPLICATE_MACRO_EXPORTS,
20     PUB_USE_OF_PRIVATE_EXTERN_CRATE,
21     UNUSED_IMPORTS,
22 };
23 use rustc::hir::def_id::{CrateNum, DefId};
24 use rustc::hir::def::{self, PathResolution, Export};
25 use rustc::session::DiagnosticMessageId;
26 use rustc::util::nodemap::FxHashSet;
27 use rustc::{bug, span_bug};
28
29 use syntax::ast::{self, Ident, Name, NodeId, CRATE_NODE_ID};
30 use syntax::ext::base::Determinacy::{self, Determined, Undetermined};
31 use syntax::ext::hygiene::Mark;
32 use syntax::symbol::keywords;
33 use syntax::util::lev_distance::find_best_match_for_name;
34 use syntax::{struct_span_err, unwrap_or};
35 use syntax_pos::{MultiSpan, Span};
36
37 use log::*;
38
39 use std::cell::{Cell, RefCell};
40 use std::{mem, ptr};
41
42 type Def = def::Def<NodeId>;
43
44 /// Contains data for specific types of import directives.
45 #[derive(Clone, Debug)]
46 pub enum ImportDirectiveSubclass<'a> {
47     SingleImport {
48         /// `source` in `use prefix::source as target`.
49         source: Ident,
50         /// `target` in `use prefix::source as target`.
51         target: Ident,
52         /// Bindings to which `source` refers to.
53         source_bindings: PerNS<Cell<Result<&'a NameBinding<'a>, Determinacy>>>,
54         /// Bindings introduced by `target`.
55         target_bindings: PerNS<Cell<Option<&'a NameBinding<'a>>>>,
56         /// `true` for `...::{self [as target]}` imports, `false` otherwise.
57         type_ns_only: bool,
58         /// Did this import result from a nested import? ie. `use foo::{bar, baz};`
59         nested: bool,
60     },
61     GlobImport {
62         is_prelude: bool,
63         max_vis: Cell<ty::Visibility>, // The visibility of the greatest re-export.
64         // n.b. `max_vis` is only used in `finalize_import` to check for re-export errors.
65     },
66     ExternCrate {
67         source: Option<Name>,
68         target: Ident,
69     },
70     MacroUse,
71 }
72
73 /// One import directive.
74 #[derive(Debug,Clone)]
75 crate struct ImportDirective<'a> {
76     /// The ID of the `extern crate`, `UseTree` etc that imported this `ImportDirective`.
77     ///
78     /// In the case where the `ImportDirective` was expanded from a "nested" use tree,
79     /// this id is the ID of the leaf tree. For example:
80     ///
81     /// ```ignore (pacify the mercilous tidy)
82     /// use foo::bar::{a, b}
83     /// ```
84     ///
85     /// If this is the import directive for `foo::bar::a`, we would have the ID of the `UseTree`
86     /// for `a` in this field.
87     pub id: NodeId,
88
89     /// The `id` of the "root" use-kind -- this is always the same as
90     /// `id` except in the case of "nested" use trees, in which case
91     /// it will be the `id` of the root use tree. e.g., in the example
92     /// from `id`, this would be the ID of the `use foo::bar`
93     /// `UseTree` node.
94     pub root_id: NodeId,
95
96     /// Span of the entire use statement.
97     pub use_span: Span,
98
99     /// Span of the entire use statement with attributes.
100     pub use_span_with_attributes: Span,
101
102     /// Did the use statement have any attributes?
103     pub has_attributes: bool,
104
105     /// Span of this use tree.
106     pub span: Span,
107
108     /// Span of the *root* use tree (see `root_id`).
109     pub root_span: Span,
110
111     pub parent_scope: ParentScope<'a>,
112     pub module_path: Vec<Segment>,
113     /// The resolution of `module_path`.
114     pub imported_module: Cell<Option<ModuleOrUniformRoot<'a>>>,
115     pub subclass: ImportDirectiveSubclass<'a>,
116     pub vis: Cell<ty::Visibility>,
117     pub used: Cell<bool>,
118 }
119
120 impl<'a> ImportDirective<'a> {
121     pub fn is_glob(&self) -> bool {
122         match self.subclass { ImportDirectiveSubclass::GlobImport { .. } => true, _ => false }
123     }
124
125     pub fn is_nested(&self) -> bool {
126         match self.subclass {
127             ImportDirectiveSubclass::SingleImport { nested, .. } => nested,
128             _ => false
129         }
130     }
131
132     crate fn crate_lint(&self) -> CrateLint {
133         CrateLint::UsePath { root_id: self.root_id, root_span: self.root_span }
134     }
135 }
136
137 #[derive(Clone, Default, Debug)]
138 /// Records information about the resolution of a name in a namespace of a module.
139 pub struct NameResolution<'a> {
140     /// Single imports that may define the name in the namespace.
141     /// Import directives are arena-allocated, so it's ok to use pointers as keys.
142     single_imports: FxHashSet<PtrKey<'a, ImportDirective<'a>>>,
143     /// The least shadowable known binding for this name, or None if there are no known bindings.
144     pub binding: Option<&'a NameBinding<'a>>,
145     shadowed_glob: Option<&'a NameBinding<'a>>,
146 }
147
148 impl<'a> NameResolution<'a> {
149     // Returns the binding for the name if it is known or None if it not known.
150     pub(crate) fn binding(&self) -> Option<&'a NameBinding<'a>> {
151         self.binding.and_then(|binding| {
152             if !binding.is_glob_import() ||
153                self.single_imports.is_empty() { Some(binding) } else { None }
154         })
155     }
156 }
157
158 impl<'a> Resolver<'a> {
159     fn resolution(&self, module: Module<'a>, ident: Ident, ns: Namespace)
160                   -> &'a RefCell<NameResolution<'a>> {
161         *module.resolutions.borrow_mut().entry((ident.modern(), ns))
162                .or_insert_with(|| self.arenas.alloc_name_resolution())
163     }
164
165     crate fn resolve_ident_in_module_unadjusted(
166         &mut self,
167         module: ModuleOrUniformRoot<'a>,
168         ident: Ident,
169         ns: Namespace,
170         record_used: bool,
171         path_span: Span,
172     ) -> Result<&'a NameBinding<'a>, Determinacy> {
173         self.resolve_ident_in_module_unadjusted_ext(
174             module, ident, ns, None, false, record_used, path_span
175         ).map_err(|(determinacy, _)| determinacy)
176     }
177
178     /// Attempts to resolve `ident` in namespaces `ns` of `module`.
179     /// Invariant: if `record_used` is `Some`, expansion and import resolution must be complete.
180     crate fn resolve_ident_in_module_unadjusted_ext(
181         &mut self,
182         module: ModuleOrUniformRoot<'a>,
183         ident: Ident,
184         ns: Namespace,
185         parent_scope: Option<&ParentScope<'a>>,
186         restricted_shadowing: bool,
187         record_used: bool,
188         path_span: Span,
189     ) -> Result<&'a NameBinding<'a>, (Determinacy, Weak)> {
190         let module = match module {
191             ModuleOrUniformRoot::Module(module) => module,
192             ModuleOrUniformRoot::CrateRootAndExternPrelude => {
193                 assert!(!restricted_shadowing);
194                 let parent_scope = self.dummy_parent_scope();
195                 let binding = self.early_resolve_ident_in_lexical_scope(
196                     ident, ScopeSet::AbsolutePath(ns), &parent_scope,
197                     record_used, record_used, path_span,
198                 );
199                 return binding.map_err(|determinacy| (determinacy, Weak::No));
200             }
201             ModuleOrUniformRoot::ExternPrelude => {
202                 assert!(!restricted_shadowing);
203                 return if ns != TypeNS {
204                     Err((Determined, Weak::No))
205                 } else if let Some(binding) = self.extern_prelude_get(ident, !record_used) {
206                     Ok(binding)
207                 } else if !self.graph_root.unresolved_invocations.borrow().is_empty() {
208                     // Macro-expanded `extern crate` items can add names to extern prelude.
209                     Err((Undetermined, Weak::No))
210                 } else {
211                     Err((Determined, Weak::No))
212                 }
213             }
214             ModuleOrUniformRoot::CurrentScope => {
215                 assert!(!restricted_shadowing);
216                 let parent_scope =
217                     parent_scope.expect("no parent scope for a single-segment import");
218
219                 if ns == TypeNS {
220                     if ident.name == keywords::Crate.name() ||
221                         ident.name == keywords::DollarCrate.name() {
222                         let module = self.resolve_crate_root(ident);
223                         let binding = (module, ty::Visibility::Public,
224                                         module.span, Mark::root())
225                                         .to_name_binding(self.arenas);
226                         return Ok(binding);
227                     } else if ident.name == keywords::Super.name() ||
228                                 ident.name == keywords::SelfLower.name() {
229                         // FIXME: Implement these with renaming requirements so that e.g.
230                         // `use super;` doesn't work, but `use super as name;` does.
231                         // Fall through here to get an error from `early_resolve_...`.
232                     }
233                 }
234
235                 let binding = self.early_resolve_ident_in_lexical_scope(
236                     ident, ScopeSet::Import(ns), parent_scope, record_used, record_used, path_span
237                 );
238                 return binding.map_err(|determinacy| (determinacy, Weak::No));
239             }
240         };
241
242         self.populate_module_if_necessary(module);
243
244         let resolution = self.resolution(module, ident, ns)
245             .try_borrow_mut()
246             .map_err(|_| (Determined, Weak::No))?; // This happens when there is a cycle of imports.
247
248         if let Some(binding) = resolution.binding {
249             if !restricted_shadowing && binding.expansion != Mark::root() {
250                 if let NameBindingKind::Def(_, true) = binding.kind {
251                     self.macro_expanded_macro_export_errors.insert((path_span, binding.span));
252                 }
253             }
254         }
255
256         let check_usable = |this: &mut Self, binding: &'a NameBinding<'a>| {
257             if let Some(blacklisted_binding) = this.blacklisted_binding {
258                 if ptr::eq(binding, blacklisted_binding) {
259                     return Err((Determined, Weak::No));
260                 }
261             }
262             // `extern crate` are always usable for backwards compatibility, see issue #37020,
263             // remove this together with `PUB_USE_OF_PRIVATE_EXTERN_CRATE`.
264             let usable = this.is_accessible(binding.vis) || binding.is_extern_crate();
265             if usable { Ok(binding) } else { Err((Determined, Weak::No)) }
266         };
267
268         if record_used {
269             return resolution.binding.and_then(|binding| {
270                 // If the primary binding is blacklisted, search further and return the shadowed
271                 // glob binding if it exists. What we really want here is having two separate
272                 // scopes in a module - one for non-globs and one for globs, but until that's done
273                 // use this hack to avoid inconsistent resolution ICEs during import validation.
274                 if let Some(blacklisted_binding) = self.blacklisted_binding {
275                     if ptr::eq(binding, blacklisted_binding) {
276                         return resolution.shadowed_glob;
277                     }
278                 }
279                 Some(binding)
280             }).ok_or((Determined, Weak::No)).and_then(|binding| {
281                 if self.last_import_segment && check_usable(self, binding).is_err() {
282                     Err((Determined, Weak::No))
283                 } else {
284                     self.record_use(ident, ns, binding, restricted_shadowing);
285
286                     if let Some(shadowed_glob) = resolution.shadowed_glob {
287                         // Forbid expanded shadowing to avoid time travel.
288                         if restricted_shadowing &&
289                         binding.expansion != Mark::root() &&
290                         binding.def() != shadowed_glob.def() {
291                             self.ambiguity_errors.push(AmbiguityError {
292                                 kind: AmbiguityKind::GlobVsExpanded,
293                                 ident,
294                                 b1: binding,
295                                 b2: shadowed_glob,
296                                 misc1: AmbiguityErrorMisc::None,
297                                 misc2: AmbiguityErrorMisc::None,
298                             });
299                         }
300                     }
301
302                     if !self.is_accessible(binding.vis) &&
303                        // Remove this together with `PUB_USE_OF_PRIVATE_EXTERN_CRATE`
304                        !(self.last_import_segment && binding.is_extern_crate()) {
305                         self.privacy_errors.push(PrivacyError(path_span, ident, binding));
306                     }
307
308                     Ok(binding)
309                 }
310             })
311         }
312
313         // Items and single imports are not shadowable, if we have one, then it's determined.
314         if let Some(binding) = resolution.binding {
315             if !binding.is_glob_import() {
316                 return check_usable(self, binding);
317             }
318         }
319
320         // --- From now on we either have a glob resolution or no resolution. ---
321
322         // Check if one of single imports can still define the name,
323         // if it can then our result is not determined and can be invalidated.
324         for single_import in &resolution.single_imports {
325             if !self.is_accessible(single_import.vis.get()) {
326                 continue;
327             }
328             let module = unwrap_or!(single_import.imported_module.get(),
329                                     return Err((Undetermined, Weak::No)));
330             let ident = match single_import.subclass {
331                 SingleImport { source, .. } => source,
332                 _ => unreachable!(),
333             };
334             match self.resolve_ident_in_module(module, ident, ns, Some(&single_import.parent_scope),
335                                                false, path_span) {
336                 Err(Determined) => continue,
337                 Ok(binding) if !self.is_accessible_from(
338                     binding.vis, single_import.parent_scope.module
339                 ) => continue,
340                 Ok(_) | Err(Undetermined) => return Err((Undetermined, Weak::No)),
341             }
342         }
343
344         // So we have a resolution that's from a glob import. This resolution is determined
345         // if it cannot be shadowed by some new item/import expanded from a macro.
346         // This happens either if there are no unexpanded macros, or expanded names cannot
347         // shadow globs (that happens in macro namespace or with restricted shadowing).
348         //
349         // Additionally, any macro in any module can plant names in the root module if it creates
350         // `macro_export` macros, so the root module effectively has unresolved invocations if any
351         // module has unresolved invocations.
352         // However, it causes resolution/expansion to stuck too often (#53144), so, to make
353         // progress, we have to ignore those potential unresolved invocations from other modules
354         // and prohibit access to macro-expanded `macro_export` macros instead (unless restricted
355         // shadowing is enabled, see `macro_expanded_macro_export_errors`).
356         let unexpanded_macros = !module.unresolved_invocations.borrow().is_empty();
357         if let Some(binding) = resolution.binding {
358             if !unexpanded_macros || ns == MacroNS || restricted_shadowing {
359                 return check_usable(self, binding);
360             } else {
361                 return Err((Undetermined, Weak::No));
362             }
363         }
364
365         // --- From now on we have no resolution. ---
366
367         // Now we are in situation when new item/import can appear only from a glob or a macro
368         // expansion. With restricted shadowing names from globs and macro expansions cannot
369         // shadow names from outer scopes, so we can freely fallback from module search to search
370         // in outer scopes. For `early_resolve_ident_in_lexical_scope` to continue search in outer
371         // scopes we return `Undetermined` with `Weak::Yes`.
372
373         // Check if one of unexpanded macros can still define the name,
374         // if it can then our "no resolution" result is not determined and can be invalidated.
375         if unexpanded_macros {
376             return Err((Undetermined, Weak::Yes));
377         }
378
379         // Check if one of glob imports can still define the name,
380         // if it can then our "no resolution" result is not determined and can be invalidated.
381         for glob_import in module.globs.borrow().iter() {
382             if !self.is_accessible(glob_import.vis.get()) {
383                 continue
384             }
385             let module = match glob_import.imported_module.get() {
386                 Some(ModuleOrUniformRoot::Module(module)) => module,
387                 Some(_) => continue,
388                 None => return Err((Undetermined, Weak::Yes)),
389             };
390             let (orig_current_module, mut ident) = (self.current_module, ident.modern());
391             match ident.span.glob_adjust(module.expansion, glob_import.span.ctxt().modern()) {
392                 Some(Some(def)) => self.current_module = self.macro_def_scope(def),
393                 Some(None) => {}
394                 None => continue,
395             };
396             let result = self.resolve_ident_in_module_unadjusted(
397                 ModuleOrUniformRoot::Module(module),
398                 ident,
399                 ns,
400                 false,
401                 path_span,
402             );
403             self.current_module = orig_current_module;
404
405             match result {
406                 Err(Determined) => continue,
407                 Ok(binding) if !self.is_accessible_from(
408                     binding.vis, glob_import.parent_scope.module
409                 ) => continue,
410                 Ok(_) | Err(Undetermined) => return Err((Undetermined, Weak::Yes)),
411             }
412         }
413
414         // No resolution and no one else can define the name - determinate error.
415         Err((Determined, Weak::No))
416     }
417
418     // Add an import directive to the current module.
419     pub fn add_import_directive(&mut self,
420                                 module_path: Vec<Segment>,
421                                 subclass: ImportDirectiveSubclass<'a>,
422                                 span: Span,
423                                 id: NodeId,
424                                 item: &ast::Item,
425                                 root_span: Span,
426                                 root_id: NodeId,
427                                 vis: ty::Visibility,
428                                 parent_scope: ParentScope<'a>) {
429         let current_module = parent_scope.module;
430         let directive = self.arenas.alloc_import_directive(ImportDirective {
431             parent_scope,
432             module_path,
433             imported_module: Cell::new(None),
434             subclass,
435             span,
436             id,
437             use_span: item.span,
438             use_span_with_attributes: item.span_with_attributes(),
439             has_attributes: !item.attrs.is_empty(),
440             root_span,
441             root_id,
442             vis: Cell::new(vis),
443             used: Cell::new(false),
444         });
445
446         debug!("add_import_directive({:?})", directive);
447
448         self.indeterminate_imports.push(directive);
449         match directive.subclass {
450             SingleImport { target, type_ns_only, .. } => {
451                 self.per_ns(|this, ns| if !type_ns_only || ns == TypeNS {
452                     let mut resolution = this.resolution(current_module, target, ns).borrow_mut();
453                     resolution.single_imports.insert(PtrKey(directive));
454                 });
455             }
456             // We don't add prelude imports to the globs since they only affect lexical scopes,
457             // which are not relevant to import resolution.
458             GlobImport { is_prelude: true, .. } => {}
459             GlobImport { .. } => current_module.globs.borrow_mut().push(directive),
460             _ => unreachable!(),
461         }
462     }
463
464     // Given a binding and an import directive that resolves to it,
465     // return the corresponding binding defined by the import directive.
466     crate fn import(&self, binding: &'a NameBinding<'a>, directive: &'a ImportDirective<'a>)
467                     -> &'a NameBinding<'a> {
468         let vis = if binding.pseudo_vis().is_at_least(directive.vis.get(), self) ||
469                      // cf. `PUB_USE_OF_PRIVATE_EXTERN_CRATE`
470                      !directive.is_glob() && binding.is_extern_crate() {
471             directive.vis.get()
472         } else {
473             binding.pseudo_vis()
474         };
475
476         if let GlobImport { ref max_vis, .. } = directive.subclass {
477             if vis == directive.vis.get() || vis.is_at_least(max_vis.get(), self) {
478                 max_vis.set(vis)
479             }
480         }
481
482         self.arenas.alloc_name_binding(NameBinding {
483             kind: NameBindingKind::Import {
484                 binding,
485                 directive,
486                 used: Cell::new(false),
487             },
488             ambiguity: None,
489             span: directive.span,
490             vis,
491             expansion: directive.parent_scope.expansion,
492         })
493     }
494
495     crate fn check_reserved_macro_name(&self, ident: Ident, ns: Namespace) {
496         // Reserve some names that are not quite covered by the general check
497         // performed on `Resolver::builtin_attrs`.
498         if ns == MacroNS &&
499            (ident.name == "cfg" || ident.name == "cfg_attr" || ident.name == "derive") {
500             self.session.span_err(ident.span,
501                                   &format!("name `{}` is reserved in macro namespace", ident));
502         }
503     }
504
505     // Define the name or return the existing binding if there is a collision.
506     pub fn try_define(&mut self,
507                       module: Module<'a>,
508                       ident: Ident,
509                       ns: Namespace,
510                       binding: &'a NameBinding<'a>)
511                       -> Result<(), &'a NameBinding<'a>> {
512         self.check_reserved_macro_name(ident, ns);
513         self.set_binding_parent_module(binding, module);
514         self.update_resolution(module, ident, ns, |this, resolution| {
515             if let Some(old_binding) = resolution.binding {
516                 if binding.def() == Def::Err {
517                     // Do not override real bindings with `Def::Err`s from error recovery.
518                     return Ok(());
519                 }
520                 match (old_binding.is_glob_import(), binding.is_glob_import()) {
521                     (true, true) => {
522                         if binding.def() != old_binding.def() {
523                             resolution.binding = Some(this.ambiguity(AmbiguityKind::GlobVsGlob,
524                                                                      old_binding, binding));
525                         } else if !old_binding.vis.is_at_least(binding.vis, &*this) {
526                             // We are glob-importing the same item but with greater visibility.
527                             resolution.binding = Some(binding);
528                         }
529                     }
530                     (old_glob @ true, false) | (old_glob @ false, true) => {
531                         let (glob_binding, nonglob_binding) = if old_glob {
532                             (old_binding, binding)
533                         } else {
534                             (binding, old_binding)
535                         };
536                         if glob_binding.def() != nonglob_binding.def() &&
537                            ns == MacroNS && nonglob_binding.expansion != Mark::root() {
538                             resolution.binding = Some(this.ambiguity(AmbiguityKind::GlobVsExpanded,
539                                                                     nonglob_binding, glob_binding));
540                         } else {
541                             resolution.binding = Some(nonglob_binding);
542                         }
543                         resolution.shadowed_glob = Some(glob_binding);
544                     }
545                     (false, false) => {
546                         if let (&NameBindingKind::Def(_, true), &NameBindingKind::Def(_, true)) =
547                                (&old_binding.kind, &binding.kind) {
548
549                             this.session.buffer_lint_with_diagnostic(
550                                 DUPLICATE_MACRO_EXPORTS,
551                                 CRATE_NODE_ID,
552                                 binding.span,
553                                 &format!("a macro named `{}` has already been exported", ident),
554                                 BuiltinLintDiagnostics::DuplicatedMacroExports(
555                                     ident, old_binding.span, binding.span));
556
557                             resolution.binding = Some(binding);
558                         } else {
559                             return Err(old_binding);
560                         }
561                     }
562                 }
563             } else {
564                 resolution.binding = Some(binding);
565             }
566
567             Ok(())
568         })
569     }
570
571     fn ambiguity(&self, kind: AmbiguityKind,
572                  primary_binding: &'a NameBinding<'a>, secondary_binding: &'a NameBinding<'a>)
573                  -> &'a NameBinding<'a> {
574         self.arenas.alloc_name_binding(NameBinding {
575             ambiguity: Some((secondary_binding, kind)),
576             ..primary_binding.clone()
577         })
578     }
579
580     // Use `f` to mutate the resolution of the name in the module.
581     // If the resolution becomes a success, define it in the module's glob importers.
582     fn update_resolution<T, F>(&mut self, module: Module<'a>, ident: Ident, ns: Namespace, f: F)
583                                -> T
584         where F: FnOnce(&mut Resolver<'a>, &mut NameResolution<'a>) -> T
585     {
586         // Ensure that `resolution` isn't borrowed when defining in the module's glob importers,
587         // during which the resolution might end up getting re-defined via a glob cycle.
588         let (binding, t) = {
589             let resolution = &mut *self.resolution(module, ident, ns).borrow_mut();
590             let old_binding = resolution.binding();
591
592             let t = f(self, resolution);
593
594             match resolution.binding() {
595                 _ if old_binding.is_some() => return t,
596                 None => return t,
597                 Some(binding) => match old_binding {
598                     Some(old_binding) if ptr::eq(old_binding, binding) => return t,
599                     _ => (binding, t),
600                 }
601             }
602         };
603
604         // Define `binding` in `module`s glob importers.
605         for directive in module.glob_importers.borrow_mut().iter() {
606             let mut ident = ident.modern();
607             let scope = match ident.span.reverse_glob_adjust(module.expansion,
608                                                              directive.span.ctxt().modern()) {
609                 Some(Some(def)) => self.macro_def_scope(def),
610                 Some(None) => directive.parent_scope.module,
611                 None => continue,
612             };
613             if self.is_accessible_from(binding.vis, scope) {
614                 let imported_binding = self.import(binding, directive);
615                 let _ = self.try_define(directive.parent_scope.module, ident, ns, imported_binding);
616             }
617         }
618
619         t
620     }
621
622     // Define a "dummy" resolution containing a Def::Err as a placeholder for a
623     // failed resolution
624     fn import_dummy_binding(&mut self, directive: &'a ImportDirective<'a>) {
625         if let SingleImport { target, .. } = directive.subclass {
626             let dummy_binding = self.dummy_binding;
627             let dummy_binding = self.import(dummy_binding, directive);
628             self.per_ns(|this, ns| {
629                 let _ = this.try_define(directive.parent_scope.module, target, ns, dummy_binding);
630             });
631         }
632     }
633 }
634
635 /// An error that may be transformed into a diagnostic later. Used to combine multiple unresolved
636 /// import errors within the same use tree into a single diagnostic.
637 #[derive(Debug, Clone)]
638 struct UnresolvedImportError {
639     span: Span,
640     label: Option<String>,
641     note: Vec<String>,
642     suggestion: Option<Suggestion>,
643 }
644
645 pub struct ImportResolver<'a, 'b: 'a> {
646     pub resolver: &'a mut Resolver<'b>,
647 }
648
649 impl<'a, 'b: 'a> std::ops::Deref for ImportResolver<'a, 'b> {
650     type Target = Resolver<'b>;
651     fn deref(&self) -> &Resolver<'b> {
652         self.resolver
653     }
654 }
655
656 impl<'a, 'b: 'a> std::ops::DerefMut for ImportResolver<'a, 'b> {
657     fn deref_mut(&mut self) -> &mut Resolver<'b> {
658         self.resolver
659     }
660 }
661
662 impl<'a, 'b: 'a> ty::DefIdTree for &'a ImportResolver<'a, 'b> {
663     fn parent(self, id: DefId) -> Option<DefId> {
664         self.resolver.parent(id)
665     }
666 }
667
668 impl<'a, 'b:'a> ImportResolver<'a, 'b> {
669     // Import resolution
670     //
671     // This is a fixed-point algorithm. We resolve imports until our efforts
672     // are stymied by an unresolved import; then we bail out of the current
673     // module and continue. We terminate successfully once no more imports
674     // remain or unsuccessfully when no forward progress in resolving imports
675     // is made.
676
677     /// Resolves all imports for the crate. This method performs the fixed-
678     /// point iteration.
679     pub fn resolve_imports(&mut self) {
680         let mut prev_num_indeterminates = self.indeterminate_imports.len() + 1;
681         while self.indeterminate_imports.len() < prev_num_indeterminates {
682             prev_num_indeterminates = self.indeterminate_imports.len();
683             for import in mem::replace(&mut self.indeterminate_imports, Vec::new()) {
684                 match self.resolve_import(&import) {
685                     true => self.determined_imports.push(import),
686                     false => self.indeterminate_imports.push(import),
687                 }
688             }
689         }
690     }
691
692     pub fn finalize_imports(&mut self) {
693         for module in self.arenas.local_modules().iter() {
694             self.finalize_resolutions_in(module);
695         }
696
697         let mut has_errors = false;
698         let mut seen_spans = FxHashSet::default();
699         let mut errors = vec![];
700         let mut prev_root_id: NodeId = NodeId::from_u32(0);
701         for i in 0 .. self.determined_imports.len() {
702             let import = self.determined_imports[i];
703             if let Some(err) = self.finalize_import(import) {
704                 has_errors = true;
705
706                 if let SingleImport { source, ref source_bindings, .. } = import.subclass {
707                     if source.name == "self" {
708                         // Silence `unresolved import` error if E0429 is already emitted
709                         if let Err(Determined) = source_bindings.value_ns.get() {
710                             continue;
711                         }
712                     }
713                 }
714
715                 // If the error is a single failed import then create a "fake" import
716                 // resolution for it so that later resolve stages won't complain.
717                 self.import_dummy_binding(import);
718                 if prev_root_id.as_u32() != 0
719                         && prev_root_id.as_u32() != import.root_id.as_u32()
720                         && !errors.is_empty() {
721                     // In the case of a new import line, throw a diagnostic message
722                     // for the previous line.
723                     self.throw_unresolved_import_error(errors, None);
724                     errors = vec![];
725                 }
726                 if !seen_spans.contains(&err.span) {
727                     let path = import_path_to_string(
728                         &import.module_path.iter().map(|seg| seg.ident).collect::<Vec<_>>(),
729                         &import.subclass,
730                         err.span,
731                     );
732                     seen_spans.insert(err.span);
733                     errors.push((path, err));
734                     prev_root_id = import.root_id;
735                 }
736             }
737         }
738
739         if !errors.is_empty() {
740             self.throw_unresolved_import_error(errors.clone(), None);
741         }
742
743         // Report unresolved imports only if no hard error was already reported
744         // to avoid generating multiple errors on the same import.
745         if !has_errors {
746             for import in &self.indeterminate_imports {
747                 self.throw_unresolved_import_error(errors, Some(MultiSpan::from(import.span)));
748                 break;
749             }
750         }
751     }
752
753     fn throw_unresolved_import_error(
754         &self,
755         errors: Vec<(String, UnresolvedImportError)>,
756         span: Option<MultiSpan>,
757     ) {
758         /// Upper limit on the number of `span_label` messages.
759         const MAX_LABEL_COUNT: usize = 10;
760
761         let (span, msg) = if errors.is_empty() {
762             (span.unwrap(), "unresolved import".to_string())
763         } else {
764             let span = MultiSpan::from_spans(
765                 errors
766                     .iter()
767                     .map(|(_, err)| err.span)
768                     .collect(),
769             );
770
771             let paths = errors
772                 .iter()
773                 .map(|(path, _)| format!("`{}`", path))
774                 .collect::<Vec<_>>();
775
776             let msg = format!(
777                 "unresolved import{} {}",
778                 if paths.len() > 1 { "s" } else { "" },
779                 paths.join(", "),
780             );
781
782             (span, msg)
783         };
784
785         let mut diag = struct_span_err!(self.resolver.session, span, E0432, "{}", &msg);
786
787         if let Some((_, UnresolvedImportError { note, .. })) = errors.iter().last() {
788             for message in note {
789                 diag.note(&message);
790             }
791         }
792
793         for (_, err) in errors.into_iter().take(MAX_LABEL_COUNT) {
794             if let Some(label) = err.label {
795                 diag.span_label(err.span, label);
796             }
797
798             if let Some((suggestions, msg, applicability)) = err.suggestion {
799                 diag.multipart_suggestion(&msg, suggestions, applicability);
800             }
801         }
802
803         diag.emit();
804     }
805
806     /// Attempts to resolve the given import, returning true if its resolution is determined.
807     /// If successful, the resolved bindings are written into the module.
808     fn resolve_import(&mut self, directive: &'b ImportDirective<'b>) -> bool {
809         debug!("(resolving import for module) resolving import `{}::...` in `{}`",
810                Segment::names_to_string(&directive.module_path),
811                module_to_string(self.current_module).unwrap_or_else(|| "???".to_string()));
812
813         self.current_module = directive.parent_scope.module;
814
815         let module = if let Some(module) = directive.imported_module.get() {
816             module
817         } else {
818             // For better failure detection, pretend that the import will
819             // not define any names while resolving its module path.
820             let orig_vis = directive.vis.replace(ty::Visibility::Invisible);
821             let path_res = self.resolve_path(
822                 &directive.module_path,
823                 None,
824                 &directive.parent_scope,
825                 false,
826                 directive.span,
827                 directive.crate_lint(),
828             );
829             directive.vis.set(orig_vis);
830
831             match path_res {
832                 PathResult::Module(module) => module,
833                 PathResult::Indeterminate => return false,
834                 PathResult::NonModule(..) | PathResult::Failed { .. } => return true,
835             }
836         };
837
838         directive.imported_module.set(Some(module));
839         let (source, target, source_bindings, target_bindings, type_ns_only) =
840                 match directive.subclass {
841             SingleImport { source, target, ref source_bindings,
842                            ref target_bindings, type_ns_only, .. } =>
843                 (source, target, source_bindings, target_bindings, type_ns_only),
844             GlobImport { .. } => {
845                 self.resolve_glob_import(directive);
846                 return true;
847             }
848             _ => unreachable!(),
849         };
850
851         let mut indeterminate = false;
852         self.per_ns(|this, ns| if !type_ns_only || ns == TypeNS {
853             if let Err(Undetermined) = source_bindings[ns].get() {
854                 // For better failure detection, pretend that the import will
855                 // not define any names while resolving its module path.
856                 let orig_vis = directive.vis.replace(ty::Visibility::Invisible);
857                 let binding = this.resolve_ident_in_module(
858                     module, source, ns, Some(&directive.parent_scope), false, directive.span
859                 );
860                 directive.vis.set(orig_vis);
861
862                 source_bindings[ns].set(binding);
863             } else {
864                 return
865             };
866
867             let parent = directive.parent_scope.module;
868             match source_bindings[ns].get() {
869                 Err(Undetermined) => indeterminate = true,
870                 Err(Determined) => {
871                     this.update_resolution(parent, target, ns, |_, resolution| {
872                         resolution.single_imports.remove(&PtrKey(directive));
873                     });
874                 }
875                 Ok(binding) if !binding.is_importable() => {
876                     let msg = format!("`{}` is not directly importable", target);
877                     struct_span_err!(this.session, directive.span, E0253, "{}", &msg)
878                         .span_label(directive.span, "cannot be imported directly")
879                         .emit();
880                     // Do not import this illegal binding. Import a dummy binding and pretend
881                     // everything is fine
882                     this.import_dummy_binding(directive);
883                 }
884                 Ok(binding) => {
885                     let imported_binding = this.import(binding, directive);
886                     target_bindings[ns].set(Some(imported_binding));
887                     this.define(parent, target, ns, imported_binding);
888                 }
889             }
890         });
891
892         !indeterminate
893     }
894
895     /// Performs final import resolution, consistency checks and error reporting.
896     ///
897     /// Optionally returns an unresolved import error. This error is buffered and used to
898     /// consolidate multiple unresolved import errors into a single diagnostic.
899     fn finalize_import(
900         &mut self,
901         directive: &'b ImportDirective<'b>
902     ) -> Option<UnresolvedImportError> {
903         self.current_module = directive.parent_scope.module;
904
905         let orig_vis = directive.vis.replace(ty::Visibility::Invisible);
906         let prev_ambiguity_errors_len = self.ambiguity_errors.len();
907         let path_res = self.resolve_path(&directive.module_path, None, &directive.parent_scope,
908                                          true, directive.span, directive.crate_lint());
909         let no_ambiguity = self.ambiguity_errors.len() == prev_ambiguity_errors_len;
910         directive.vis.set(orig_vis);
911         let module = match path_res {
912             PathResult::Module(module) => {
913                 // Consistency checks, analogous to `finalize_current_module_macro_resolutions`.
914                 if let Some(initial_module) = directive.imported_module.get() {
915                     if !ModuleOrUniformRoot::same_def(module, initial_module) && no_ambiguity {
916                         span_bug!(directive.span, "inconsistent resolution for an import");
917                     }
918                 } else {
919                     if self.privacy_errors.is_empty() {
920                         let msg = "cannot determine resolution for the import";
921                         let msg_note = "import resolution is stuck, try simplifying other imports";
922                         self.session.struct_span_err(directive.span, msg).note(msg_note).emit();
923                     }
924                 }
925
926                 module
927             }
928             PathResult::Failed { is_error_from_last_segment: false, span, label, suggestion } => {
929                 if no_ambiguity {
930                     assert!(directive.imported_module.get().is_none());
931                     resolve_error(self, span, ResolutionError::FailedToResolve {
932                         label,
933                         suggestion,
934                     });
935                 }
936                 return None;
937             }
938             PathResult::Failed { is_error_from_last_segment: true, span, label, suggestion } => {
939                 if no_ambiguity {
940                     assert!(directive.imported_module.get().is_none());
941                     let err = match self.make_path_suggestion(
942                         span,
943                         directive.module_path.clone(),
944                         &directive.parent_scope,
945                     ) {
946                         Some((suggestion, note)) => {
947                             UnresolvedImportError {
948                                 span,
949                                 label: None,
950                                 note,
951                                 suggestion: Some((
952                                     vec![(span, Segment::names_to_string(&suggestion))],
953                                     String::from("a similar path exists"),
954                                     Applicability::MaybeIncorrect,
955                                 )),
956                             }
957                         }
958                         None => {
959                             UnresolvedImportError {
960                                 span,
961                                 label: Some(label),
962                                 note: Vec::new(),
963                                 suggestion,
964                             }
965                         }
966                     };
967
968                     return Some(err);
969                 }
970                 return None;
971             }
972             PathResult::NonModule(path_res) if path_res.base_def() == Def::Err => {
973                 if no_ambiguity {
974                     assert!(directive.imported_module.get().is_none());
975                 }
976                 // The error was already reported earlier.
977                 return None;
978             }
979             PathResult::Indeterminate | PathResult::NonModule(..) => unreachable!(),
980         };
981
982         let (ident, target, source_bindings, target_bindings, type_ns_only) =
983                 match directive.subclass {
984             SingleImport { source, target, ref source_bindings,
985                            ref target_bindings, type_ns_only, .. } =>
986                 (source, target, source_bindings, target_bindings, type_ns_only),
987             GlobImport { is_prelude, ref max_vis } => {
988                 if directive.module_path.len() <= 1 {
989                     // HACK(eddyb) `lint_if_path_starts_with_module` needs at least
990                     // 2 segments, so the `resolve_path` above won't trigger it.
991                     let mut full_path = directive.module_path.clone();
992                     full_path.push(Segment::from_ident(keywords::Invalid.ident()));
993                     self.lint_if_path_starts_with_module(
994                         directive.crate_lint(),
995                         &full_path,
996                         directive.span,
997                         None,
998                     );
999                 }
1000
1001                 if let ModuleOrUniformRoot::Module(module) = module {
1002                     if module.def_id() == directive.parent_scope.module.def_id() {
1003                         // Importing a module into itself is not allowed.
1004                         return Some(UnresolvedImportError {
1005                             span: directive.span,
1006                             label: Some(String::from("cannot glob-import a module into itself")),
1007                             note: Vec::new(),
1008                             suggestion: None,
1009                         });
1010                     }
1011                 }
1012                 if !is_prelude &&
1013                    max_vis.get() != ty::Visibility::Invisible && // Allow empty globs.
1014                    !max_vis.get().is_at_least(directive.vis.get(), &*self) {
1015                     let msg = "A non-empty glob must import something with the glob's visibility";
1016                     self.session.span_err(directive.span, msg);
1017                 }
1018                 return None;
1019             }
1020             _ => unreachable!(),
1021         };
1022
1023         let mut all_ns_err = true;
1024         self.per_ns(|this, ns| if !type_ns_only || ns == TypeNS {
1025             let orig_vis = directive.vis.replace(ty::Visibility::Invisible);
1026             let orig_blacklisted_binding =
1027                 mem::replace(&mut this.blacklisted_binding, target_bindings[ns].get());
1028             let orig_last_import_segment = mem::replace(&mut this.last_import_segment, true);
1029             let binding = this.resolve_ident_in_module(
1030                 module, ident, ns, Some(&directive.parent_scope), true, directive.span
1031             );
1032             this.last_import_segment = orig_last_import_segment;
1033             this.blacklisted_binding = orig_blacklisted_binding;
1034             directive.vis.set(orig_vis);
1035
1036             match binding {
1037                 Ok(binding) => {
1038                     // Consistency checks, analogous to `finalize_current_module_macro_resolutions`.
1039                     let initial_def = source_bindings[ns].get().map(|initial_binding| {
1040                         all_ns_err = false;
1041                         if let Some(target_binding) = target_bindings[ns].get() {
1042                             if target.name == "_" &&
1043                                initial_binding.is_extern_crate() && !initial_binding.is_import() {
1044                                 this.record_use(ident, ns, target_binding,
1045                                                 directive.module_path.is_empty());
1046                             }
1047                         }
1048                         initial_binding.def()
1049                     });
1050                     let def = binding.def();
1051                     if let Ok(initial_def) = initial_def {
1052                         if def != initial_def && this.ambiguity_errors.is_empty() {
1053                             span_bug!(directive.span, "inconsistent resolution for an import");
1054                         }
1055                     } else {
1056                         if def != Def::Err &&
1057                            this.ambiguity_errors.is_empty() && this.privacy_errors.is_empty() {
1058                             let msg = "cannot determine resolution for the import";
1059                             let msg_note =
1060                                 "import resolution is stuck, try simplifying other imports";
1061                             this.session.struct_span_err(directive.span, msg).note(msg_note).emit();
1062                         }
1063                     }
1064                 }
1065                 Err(..) => {
1066                     // FIXME: This assert may fire if public glob is later shadowed by a private
1067                     // single import (see test `issue-55884-2.rs`). In theory single imports should
1068                     // always block globs, even if they are not yet resolved, so that this kind of
1069                     // self-inconsistent resolution never happens.
1070                     // Reenable the assert when the issue is fixed.
1071                     // assert!(result[ns].get().is_err());
1072                 }
1073             }
1074         });
1075
1076         if all_ns_err {
1077             let mut all_ns_failed = true;
1078             self.per_ns(|this, ns| if !type_ns_only || ns == TypeNS {
1079                 let binding = this.resolve_ident_in_module(
1080                     module, ident, ns, Some(&directive.parent_scope), true, directive.span
1081                 );
1082                 if binding.is_ok() {
1083                     all_ns_failed = false;
1084                 }
1085             });
1086
1087             return if all_ns_failed {
1088                 let resolutions = match module {
1089                     ModuleOrUniformRoot::Module(module) => Some(module.resolutions.borrow()),
1090                     _ => None,
1091                 };
1092                 let resolutions = resolutions.as_ref().into_iter().flat_map(|r| r.iter());
1093                 let names = resolutions.filter_map(|(&(ref i, _), resolution)| {
1094                     if *i == ident { return None; } // Never suggest the same name
1095                     match *resolution.borrow() {
1096                         NameResolution { binding: Some(name_binding), .. } => {
1097                             match name_binding.kind {
1098                                 NameBindingKind::Import { binding, .. } => {
1099                                     match binding.kind {
1100                                         // Never suggest the name that has binding error
1101                                         // i.e., the name that cannot be previously resolved
1102                                         NameBindingKind::Def(Def::Err, _) => return None,
1103                                         _ => Some(&i.name),
1104                                     }
1105                                 },
1106                                 _ => Some(&i.name),
1107                             }
1108                         },
1109                         NameResolution { ref single_imports, .. }
1110                             if single_imports.is_empty() => None,
1111                         _ => Some(&i.name),
1112                     }
1113                 });
1114
1115                 let lev_suggestion = find_best_match_for_name(names, &ident.as_str(), None)
1116                    .map(|suggestion|
1117                         (vec![(ident.span, suggestion.to_string())],
1118                          String::from("a similar name exists in the module"),
1119                          Applicability::MaybeIncorrect)
1120                     );
1121
1122                 let (suggestion, note) = match self.check_for_module_export_macro(
1123                     directive, module, ident,
1124                 ) {
1125                     Some((suggestion, note)) => (suggestion.or(lev_suggestion), note),
1126                     _ => (lev_suggestion, Vec::new()),
1127                 };
1128
1129                 let label = match module {
1130                     ModuleOrUniformRoot::Module(module) => {
1131                         let module_str = module_to_string(module);
1132                         if let Some(module_str) = module_str {
1133                             format!("no `{}` in `{}`", ident, module_str)
1134                         } else {
1135                             format!("no `{}` in the root", ident)
1136                         }
1137                     }
1138                     _ => {
1139                         if !ident.is_path_segment_keyword() {
1140                             format!("no `{}` external crate", ident)
1141                         } else {
1142                             // HACK(eddyb) this shows up for `self` & `super`, which
1143                             // should work instead - for now keep the same error message.
1144                             format!("no `{}` in the root", ident)
1145                         }
1146                     }
1147                 };
1148
1149                 Some(UnresolvedImportError {
1150                     span: directive.span,
1151                     label: Some(label),
1152                     note,
1153                     suggestion,
1154                 })
1155             } else {
1156                 // `resolve_ident_in_module` reported a privacy error.
1157                 self.import_dummy_binding(directive);
1158                 None
1159             }
1160         }
1161
1162         let mut reexport_error = None;
1163         let mut any_successful_reexport = false;
1164         self.per_ns(|this, ns| {
1165             if let Ok(binding) = source_bindings[ns].get() {
1166                 let vis = directive.vis.get();
1167                 if !binding.pseudo_vis().is_at_least(vis, &*this) {
1168                     reexport_error = Some((ns, binding));
1169                 } else {
1170                     any_successful_reexport = true;
1171                 }
1172             }
1173         });
1174
1175         // All namespaces must be re-exported with extra visibility for an error to occur.
1176         if !any_successful_reexport {
1177             let (ns, binding) = reexport_error.unwrap();
1178             if ns == TypeNS && binding.is_extern_crate() {
1179                 let msg = format!("extern crate `{}` is private, and cannot be \
1180                                    re-exported (error E0365), consider declaring with \
1181                                    `pub`",
1182                                    ident);
1183                 self.session.buffer_lint(PUB_USE_OF_PRIVATE_EXTERN_CRATE,
1184                                          directive.id,
1185                                          directive.span,
1186                                          &msg);
1187             } else if ns == TypeNS {
1188                 struct_span_err!(self.session, directive.span, E0365,
1189                                  "`{}` is private, and cannot be re-exported", ident)
1190                     .span_label(directive.span, format!("re-export of private `{}`", ident))
1191                     .note(&format!("consider declaring type or module `{}` with `pub`", ident))
1192                     .emit();
1193             } else {
1194                 let msg = format!("`{}` is private, and cannot be re-exported", ident);
1195                 let note_msg =
1196                     format!("consider marking `{}` as `pub` in the imported module", ident);
1197                 struct_span_err!(self.session, directive.span, E0364, "{}", &msg)
1198                     .span_note(directive.span, &note_msg)
1199                     .emit();
1200             }
1201         }
1202
1203         if directive.module_path.len() <= 1 {
1204             // HACK(eddyb) `lint_if_path_starts_with_module` needs at least
1205             // 2 segments, so the `resolve_path` above won't trigger it.
1206             let mut full_path = directive.module_path.clone();
1207             full_path.push(Segment::from_ident(ident));
1208             self.per_ns(|this, ns| {
1209                 if let Ok(binding) = source_bindings[ns].get() {
1210                     this.lint_if_path_starts_with_module(
1211                         directive.crate_lint(),
1212                         &full_path,
1213                         directive.span,
1214                         Some(binding),
1215                     );
1216                 }
1217             });
1218         }
1219
1220         // Record what this import resolves to for later uses in documentation,
1221         // this may resolve to either a value or a type, but for documentation
1222         // purposes it's good enough to just favor one over the other.
1223         self.per_ns(|this, ns| if let Some(binding) = source_bindings[ns].get().ok() {
1224             let mut def = binding.def();
1225             if let Def::Macro(def_id, _) = def {
1226                 // `DefId`s from the "built-in macro crate" should not leak from resolve because
1227                 // later stages are not ready to deal with them and produce lots of ICEs. Replace
1228                 // them with `Def::Err` until some saner scheme is implemented for built-in macros.
1229                 if def_id.krate == CrateNum::BuiltinMacros {
1230                     this.session.span_err(directive.span, "cannot import a built-in macro");
1231                     def = Def::Err;
1232                 }
1233             }
1234             let import = this.import_map.entry(directive.id).or_default();
1235             import[ns] = Some(PathResolution::new(def));
1236         });
1237
1238         self.check_for_redundant_imports(
1239             ident,
1240             directive,
1241             source_bindings,
1242             target_bindings,
1243             target,
1244         );
1245
1246         debug!("(resolving single import) successfully resolved import");
1247         None
1248     }
1249
1250     fn check_for_redundant_imports(
1251         &mut self,
1252         ident: Ident,
1253         directive: &'b ImportDirective<'b>,
1254         source_bindings: &PerNS<Cell<Result<&'b NameBinding<'b>, Determinacy>>>,
1255         target_bindings: &PerNS<Cell<Option<&'b NameBinding<'b>>>>,
1256         target: Ident,
1257     ) {
1258         // Skip if the import was produced by a macro.
1259         if directive.parent_scope.expansion != Mark::root() {
1260             return;
1261         }
1262
1263         // Skip if we are inside a named module (in contrast to an anonymous
1264         // module defined by a block).
1265         if let ModuleKind::Def(_, _) = directive.parent_scope.module.kind {
1266             return;
1267         }
1268
1269         let mut is_redundant = PerNS {
1270             value_ns: None,
1271             type_ns: None,
1272             macro_ns: None,
1273         };
1274
1275         let mut redundant_span = PerNS {
1276             value_ns: None,
1277             type_ns: None,
1278             macro_ns: None,
1279         };
1280
1281         self.per_ns(|this, ns| if let Some(binding) = source_bindings[ns].get().ok() {
1282             if binding.def() == Def::Err {
1283                 return;
1284             }
1285
1286             let orig_blacklisted_binding = mem::replace(
1287                 &mut this.blacklisted_binding,
1288                 target_bindings[ns].get()
1289             );
1290
1291             match this.early_resolve_ident_in_lexical_scope(
1292                 target,
1293                 ScopeSet::Import(ns),
1294                 &directive.parent_scope,
1295                 false,
1296                 false,
1297                 directive.span,
1298             ) {
1299                 Ok(other_binding) => {
1300                     is_redundant[ns] = Some(
1301                         binding.def() == other_binding.def()
1302                         && !other_binding.is_ambiguity()
1303                     );
1304                     redundant_span[ns] =
1305                         Some((other_binding.span, other_binding.is_import()));
1306                 }
1307                 Err(_) => is_redundant[ns] = Some(false)
1308             }
1309
1310             this.blacklisted_binding = orig_blacklisted_binding;
1311         });
1312
1313         if !is_redundant.is_empty() &&
1314             is_redundant.present_items().all(|is_redundant| is_redundant)
1315         {
1316             let mut redundant_spans: Vec<_> = redundant_span.present_items().collect();
1317             redundant_spans.sort();
1318             redundant_spans.dedup();
1319             self.session.buffer_lint_with_diagnostic(
1320                 UNUSED_IMPORTS,
1321                 directive.id,
1322                 directive.span,
1323                 &format!("the item `{}` is imported redundantly", ident),
1324                 BuiltinLintDiagnostics::RedundantImport(redundant_spans, ident),
1325             );
1326         }
1327     }
1328
1329     fn resolve_glob_import(&mut self, directive: &'b ImportDirective<'b>) {
1330         let module = match directive.imported_module.get().unwrap() {
1331             ModuleOrUniformRoot::Module(module) => module,
1332             _ => {
1333                 self.session.span_err(directive.span, "cannot glob-import all possible crates");
1334                 return;
1335             }
1336         };
1337
1338         self.populate_module_if_necessary(module);
1339
1340         if module.is_trait() {
1341             self.session.span_err(directive.span, "items in traits are not importable.");
1342             return;
1343         } else if module.def_id() == directive.parent_scope.module.def_id()  {
1344             return;
1345         } else if let GlobImport { is_prelude: true, .. } = directive.subclass {
1346             self.prelude = Some(module);
1347             return;
1348         }
1349
1350         // Add to module's glob_importers
1351         module.glob_importers.borrow_mut().push(directive);
1352
1353         // Ensure that `resolutions` isn't borrowed during `try_define`,
1354         // since it might get updated via a glob cycle.
1355         let bindings = module.resolutions.borrow().iter().filter_map(|(&ident, resolution)| {
1356             resolution.borrow().binding().map(|binding| (ident, binding))
1357         }).collect::<Vec<_>>();
1358         for ((mut ident, ns), binding) in bindings {
1359             let scope = match ident.span.reverse_glob_adjust(module.expansion,
1360                                                              directive.span.ctxt().modern()) {
1361                 Some(Some(def)) => self.macro_def_scope(def),
1362                 Some(None) => self.current_module,
1363                 None => continue,
1364             };
1365             if self.is_accessible_from(binding.pseudo_vis(), scope) {
1366                 let imported_binding = self.import(binding, directive);
1367                 let _ = self.try_define(directive.parent_scope.module, ident, ns, imported_binding);
1368             }
1369         }
1370
1371         // Record the destination of this import
1372         self.record_def(directive.id, PathResolution::new(module.def().unwrap()));
1373     }
1374
1375     // Miscellaneous post-processing, including recording re-exports,
1376     // reporting conflicts, and reporting unresolved imports.
1377     fn finalize_resolutions_in(&mut self, module: Module<'b>) {
1378         // Since import resolution is finished, globs will not define any more names.
1379         *module.globs.borrow_mut() = Vec::new();
1380
1381         let mut reexports = Vec::new();
1382
1383         for (&(ident, ns), resolution) in module.resolutions.borrow().iter() {
1384             let resolution = &mut *resolution.borrow_mut();
1385             let binding = match resolution.binding {
1386                 Some(binding) => binding,
1387                 None => continue,
1388             };
1389
1390             // Filter away ambiguous and gensymed imports. Gensymed imports
1391             // (e.g. implicitly injected `std`) cannot be properly encoded in metadata,
1392             // so they can cause name conflict errors downstream.
1393             let is_good_import = binding.is_import() && !binding.is_ambiguity() &&
1394                                  !(ident.name.is_gensymed() && ident.name != "_");
1395             if is_good_import || binding.is_macro_def() {
1396                 let def = binding.def();
1397                 if def != Def::Err {
1398                     if let Some(def_id) = def.opt_def_id() {
1399                         if !def_id.is_local() && def_id.krate != CrateNum::BuiltinMacros {
1400                             self.cstore.export_macros_untracked(def_id.krate);
1401                         }
1402                     }
1403                     reexports.push(Export {
1404                         ident: ident.modern(),
1405                         def: def,
1406                         span: binding.span,
1407                         vis: binding.vis,
1408                     });
1409                 }
1410             }
1411
1412             if let NameBindingKind::Import { binding: orig_binding, directive, .. } = binding.kind {
1413                 if ns == TypeNS && orig_binding.is_variant() &&
1414                     !orig_binding.vis.is_at_least(binding.vis, &*self) {
1415                         let msg = match directive.subclass {
1416                             ImportDirectiveSubclass::SingleImport { .. } => {
1417                                 format!("variant `{}` is private and cannot be re-exported",
1418                                         ident)
1419                             },
1420                             ImportDirectiveSubclass::GlobImport { .. } => {
1421                                 let msg = "enum is private and its variants \
1422                                            cannot be re-exported".to_owned();
1423                                 let error_id = (DiagnosticMessageId::ErrorId(0), // no code?!
1424                                                 Some(binding.span),
1425                                                 msg.clone());
1426                                 let fresh = self.session.one_time_diagnostics
1427                                     .borrow_mut().insert(error_id);
1428                                 if !fresh {
1429                                     continue;
1430                                 }
1431                                 msg
1432                             },
1433                             ref s @ _ => bug!("unexpected import subclass {:?}", s)
1434                         };
1435                         let mut err = self.session.struct_span_err(binding.span, &msg);
1436
1437                         let imported_module = match directive.imported_module.get() {
1438                             Some(ModuleOrUniformRoot::Module(module)) => module,
1439                             _ => bug!("module should exist"),
1440                         };
1441                         let resolutions = imported_module.parent.expect("parent should exist")
1442                             .resolutions.borrow();
1443                         let enum_path_segment_index = directive.module_path.len() - 1;
1444                         let enum_ident = directive.module_path[enum_path_segment_index].ident;
1445
1446                         let enum_resolution = resolutions.get(&(enum_ident, TypeNS))
1447                             .expect("resolution should exist");
1448                         let enum_span = enum_resolution.borrow()
1449                             .binding.expect("binding should exist")
1450                             .span;
1451                         let enum_def_span = self.session.source_map().def_span(enum_span);
1452                         let enum_def_snippet = self.session.source_map()
1453                             .span_to_snippet(enum_def_span).expect("snippet should exist");
1454                         // potentially need to strip extant `crate`/`pub(path)` for suggestion
1455                         let after_vis_index = enum_def_snippet.find("enum")
1456                             .expect("`enum` keyword should exist in snippet");
1457                         let suggestion = format!("pub {}",
1458                                                  &enum_def_snippet[after_vis_index..]);
1459
1460                         self.session
1461                             .diag_span_suggestion_once(&mut err,
1462                                                        DiagnosticMessageId::ErrorId(0),
1463                                                        enum_def_span,
1464                                                        "consider making the enum public",
1465                                                        suggestion);
1466                         err.emit();
1467                 }
1468             }
1469         }
1470
1471         if reexports.len() > 0 {
1472             if let Some(def_id) = module.def_id() {
1473                 self.export_map.insert(def_id, reexports);
1474             }
1475         }
1476     }
1477 }
1478
1479 fn import_path_to_string(names: &[Ident],
1480                          subclass: &ImportDirectiveSubclass<'_>,
1481                          span: Span) -> String {
1482     let pos = names.iter()
1483         .position(|p| span == p.span && p.name != keywords::PathRoot.name());
1484     let global = !names.is_empty() && names[0].name == keywords::PathRoot.name();
1485     if let Some(pos) = pos {
1486         let names = if global { &names[1..pos + 1] } else { &names[..pos + 1] };
1487         names_to_string(names)
1488     } else {
1489         let names = if global { &names[1..] } else { names };
1490         if names.is_empty() {
1491             import_directive_subclass_to_string(subclass)
1492         } else {
1493             format!("{}::{}",
1494                     names_to_string(names),
1495                     import_directive_subclass_to_string(subclass))
1496         }
1497     }
1498 }
1499
1500 fn import_directive_subclass_to_string(subclass: &ImportDirectiveSubclass<'_>) -> String {
1501     match *subclass {
1502         SingleImport { source, .. } => source.to_string(),
1503         GlobImport { .. } => "*".to_string(),
1504         ExternCrate { .. } => "<extern crate>".to_string(),
1505         MacroUse => "#[macro_use]".to_string(),
1506     }
1507 }